@everymatrix/casino-tournaments-details 0.0.190 → 0.0.194
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,748 +1,2 @@
|
|
1
|
-
(function (
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
3
|
-
typeof define === 'function' && define.amd ? define(factory) :
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.app = factory());
|
5
|
-
}(this, (function () { 'use strict';
|
6
|
-
|
7
|
-
function noop() { }
|
8
|
-
function add_location(element, file, line, column, char) {
|
9
|
-
element.__svelte_meta = {
|
10
|
-
loc: { file, line, column, char }
|
11
|
-
};
|
12
|
-
}
|
13
|
-
function run(fn) {
|
14
|
-
return fn();
|
15
|
-
}
|
16
|
-
function blank_object() {
|
17
|
-
return Object.create(null);
|
18
|
-
}
|
19
|
-
function run_all(fns) {
|
20
|
-
fns.forEach(run);
|
21
|
-
}
|
22
|
-
function is_function(thing) {
|
23
|
-
return typeof thing === 'function';
|
24
|
-
}
|
25
|
-
function safe_not_equal(a, b) {
|
26
|
-
return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
|
27
|
-
}
|
28
|
-
function is_empty(obj) {
|
29
|
-
return Object.keys(obj).length === 0;
|
30
|
-
}
|
31
|
-
function action_destroyer(action_result) {
|
32
|
-
return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;
|
33
|
-
}
|
34
|
-
|
35
|
-
function append(target, node) {
|
36
|
-
target.appendChild(node);
|
37
|
-
}
|
38
|
-
function insert(target, node, anchor) {
|
39
|
-
target.insertBefore(node, anchor || null);
|
40
|
-
}
|
41
|
-
function detach(node) {
|
42
|
-
node.parentNode.removeChild(node);
|
43
|
-
}
|
44
|
-
function element(name) {
|
45
|
-
return document.createElement(name);
|
46
|
-
}
|
47
|
-
function svg_element(name) {
|
48
|
-
return document.createElementNS('http://www.w3.org/2000/svg', name);
|
49
|
-
}
|
50
|
-
function text(data) {
|
51
|
-
return document.createTextNode(data);
|
52
|
-
}
|
53
|
-
function space() {
|
54
|
-
return text(' ');
|
55
|
-
}
|
56
|
-
function listen(node, event, handler, options) {
|
57
|
-
node.addEventListener(event, handler, options);
|
58
|
-
return () => node.removeEventListener(event, handler, options);
|
59
|
-
}
|
60
|
-
function attr(node, attribute, value) {
|
61
|
-
if (value == null)
|
62
|
-
node.removeAttribute(attribute);
|
63
|
-
else if (node.getAttribute(attribute) !== value)
|
64
|
-
node.setAttribute(attribute, value);
|
65
|
-
}
|
66
|
-
function children(element) {
|
67
|
-
return Array.from(element.childNodes);
|
68
|
-
}
|
69
|
-
function custom_event(type, detail) {
|
70
|
-
const e = document.createEvent('CustomEvent');
|
71
|
-
e.initCustomEvent(type, false, false, detail);
|
72
|
-
return e;
|
73
|
-
}
|
74
|
-
function attribute_to_object(attributes) {
|
75
|
-
const result = {};
|
76
|
-
for (const attribute of attributes) {
|
77
|
-
result[attribute.name] = attribute.value;
|
78
|
-
}
|
79
|
-
return result;
|
80
|
-
}
|
81
|
-
|
82
|
-
let current_component;
|
83
|
-
function set_current_component(component) {
|
84
|
-
current_component = component;
|
85
|
-
}
|
86
|
-
function get_current_component() {
|
87
|
-
if (!current_component)
|
88
|
-
throw new Error('Function called outside component initialization');
|
89
|
-
return current_component;
|
90
|
-
}
|
91
|
-
function onMount(fn) {
|
92
|
-
get_current_component().$$.on_mount.push(fn);
|
93
|
-
}
|
94
|
-
|
95
|
-
const dirty_components = [];
|
96
|
-
const binding_callbacks = [];
|
97
|
-
const render_callbacks = [];
|
98
|
-
const flush_callbacks = [];
|
99
|
-
const resolved_promise = Promise.resolve();
|
100
|
-
let update_scheduled = false;
|
101
|
-
function schedule_update() {
|
102
|
-
if (!update_scheduled) {
|
103
|
-
update_scheduled = true;
|
104
|
-
resolved_promise.then(flush);
|
105
|
-
}
|
106
|
-
}
|
107
|
-
function add_render_callback(fn) {
|
108
|
-
render_callbacks.push(fn);
|
109
|
-
}
|
110
|
-
let flushing = false;
|
111
|
-
const seen_callbacks = new Set();
|
112
|
-
function flush() {
|
113
|
-
if (flushing)
|
114
|
-
return;
|
115
|
-
flushing = true;
|
116
|
-
do {
|
117
|
-
// first, call beforeUpdate functions
|
118
|
-
// and update components
|
119
|
-
for (let i = 0; i < dirty_components.length; i += 1) {
|
120
|
-
const component = dirty_components[i];
|
121
|
-
set_current_component(component);
|
122
|
-
update(component.$$);
|
123
|
-
}
|
124
|
-
set_current_component(null);
|
125
|
-
dirty_components.length = 0;
|
126
|
-
while (binding_callbacks.length)
|
127
|
-
binding_callbacks.pop()();
|
128
|
-
// then, once components are updated, call
|
129
|
-
// afterUpdate functions. This may cause
|
130
|
-
// subsequent updates...
|
131
|
-
for (let i = 0; i < render_callbacks.length; i += 1) {
|
132
|
-
const callback = render_callbacks[i];
|
133
|
-
if (!seen_callbacks.has(callback)) {
|
134
|
-
// ...so guard against infinite loops
|
135
|
-
seen_callbacks.add(callback);
|
136
|
-
callback();
|
137
|
-
}
|
138
|
-
}
|
139
|
-
render_callbacks.length = 0;
|
140
|
-
} while (dirty_components.length);
|
141
|
-
while (flush_callbacks.length) {
|
142
|
-
flush_callbacks.pop()();
|
143
|
-
}
|
144
|
-
update_scheduled = false;
|
145
|
-
flushing = false;
|
146
|
-
seen_callbacks.clear();
|
147
|
-
}
|
148
|
-
function update($$) {
|
149
|
-
if ($$.fragment !== null) {
|
150
|
-
$$.update();
|
151
|
-
run_all($$.before_update);
|
152
|
-
const dirty = $$.dirty;
|
153
|
-
$$.dirty = [-1];
|
154
|
-
$$.fragment && $$.fragment.p($$.ctx, dirty);
|
155
|
-
$$.after_update.forEach(add_render_callback);
|
156
|
-
}
|
157
|
-
}
|
158
|
-
const outroing = new Set();
|
159
|
-
function transition_in(block, local) {
|
160
|
-
if (block && block.i) {
|
161
|
-
outroing.delete(block);
|
162
|
-
block.i(local);
|
163
|
-
}
|
164
|
-
}
|
165
|
-
function mount_component(component, target, anchor, customElement) {
|
166
|
-
const { fragment, on_mount, on_destroy, after_update } = component.$$;
|
167
|
-
fragment && fragment.m(target, anchor);
|
168
|
-
if (!customElement) {
|
169
|
-
// onMount happens before the initial afterUpdate
|
170
|
-
add_render_callback(() => {
|
171
|
-
const new_on_destroy = on_mount.map(run).filter(is_function);
|
172
|
-
if (on_destroy) {
|
173
|
-
on_destroy.push(...new_on_destroy);
|
174
|
-
}
|
175
|
-
else {
|
176
|
-
// Edge case - component was destroyed immediately,
|
177
|
-
// most likely as a result of a binding initialising
|
178
|
-
run_all(new_on_destroy);
|
179
|
-
}
|
180
|
-
component.$$.on_mount = [];
|
181
|
-
});
|
182
|
-
}
|
183
|
-
after_update.forEach(add_render_callback);
|
184
|
-
}
|
185
|
-
function destroy_component(component, detaching) {
|
186
|
-
const $$ = component.$$;
|
187
|
-
if ($$.fragment !== null) {
|
188
|
-
run_all($$.on_destroy);
|
189
|
-
$$.fragment && $$.fragment.d(detaching);
|
190
|
-
// TODO null out other refs, including component.$$ (but need to
|
191
|
-
// preserve final state?)
|
192
|
-
$$.on_destroy = $$.fragment = null;
|
193
|
-
$$.ctx = [];
|
194
|
-
}
|
195
|
-
}
|
196
|
-
function make_dirty(component, i) {
|
197
|
-
if (component.$$.dirty[0] === -1) {
|
198
|
-
dirty_components.push(component);
|
199
|
-
schedule_update();
|
200
|
-
component.$$.dirty.fill(0);
|
201
|
-
}
|
202
|
-
component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));
|
203
|
-
}
|
204
|
-
function init(component, options, instance, create_fragment, not_equal, props, dirty = [-1]) {
|
205
|
-
const parent_component = current_component;
|
206
|
-
set_current_component(component);
|
207
|
-
const $$ = component.$$ = {
|
208
|
-
fragment: null,
|
209
|
-
ctx: null,
|
210
|
-
// state
|
211
|
-
props,
|
212
|
-
update: noop,
|
213
|
-
not_equal,
|
214
|
-
bound: blank_object(),
|
215
|
-
// lifecycle
|
216
|
-
on_mount: [],
|
217
|
-
on_destroy: [],
|
218
|
-
on_disconnect: [],
|
219
|
-
before_update: [],
|
220
|
-
after_update: [],
|
221
|
-
context: new Map(parent_component ? parent_component.$$.context : options.context || []),
|
222
|
-
// everything else
|
223
|
-
callbacks: blank_object(),
|
224
|
-
dirty,
|
225
|
-
skip_bound: false
|
226
|
-
};
|
227
|
-
let ready = false;
|
228
|
-
$$.ctx = instance
|
229
|
-
? instance(component, options.props || {}, (i, ret, ...rest) => {
|
230
|
-
const value = rest.length ? rest[0] : ret;
|
231
|
-
if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {
|
232
|
-
if (!$$.skip_bound && $$.bound[i])
|
233
|
-
$$.bound[i](value);
|
234
|
-
if (ready)
|
235
|
-
make_dirty(component, i);
|
236
|
-
}
|
237
|
-
return ret;
|
238
|
-
})
|
239
|
-
: [];
|
240
|
-
$$.update();
|
241
|
-
ready = true;
|
242
|
-
run_all($$.before_update);
|
243
|
-
// `false` as a special case of no DOM component
|
244
|
-
$$.fragment = create_fragment ? create_fragment($$.ctx) : false;
|
245
|
-
if (options.target) {
|
246
|
-
if (options.hydrate) {
|
247
|
-
const nodes = children(options.target);
|
248
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
249
|
-
$$.fragment && $$.fragment.l(nodes);
|
250
|
-
nodes.forEach(detach);
|
251
|
-
}
|
252
|
-
else {
|
253
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
254
|
-
$$.fragment && $$.fragment.c();
|
255
|
-
}
|
256
|
-
if (options.intro)
|
257
|
-
transition_in(component.$$.fragment);
|
258
|
-
mount_component(component, options.target, options.anchor, options.customElement);
|
259
|
-
flush();
|
260
|
-
}
|
261
|
-
set_current_component(parent_component);
|
262
|
-
}
|
263
|
-
let SvelteElement;
|
264
|
-
if (typeof HTMLElement === 'function') {
|
265
|
-
SvelteElement = class extends HTMLElement {
|
266
|
-
constructor() {
|
267
|
-
super();
|
268
|
-
this.attachShadow({ mode: 'open' });
|
269
|
-
}
|
270
|
-
connectedCallback() {
|
271
|
-
const { on_mount } = this.$$;
|
272
|
-
this.$$.on_disconnect = on_mount.map(run).filter(is_function);
|
273
|
-
// @ts-ignore todo: improve typings
|
274
|
-
for (const key in this.$$.slotted) {
|
275
|
-
// @ts-ignore todo: improve typings
|
276
|
-
this.appendChild(this.$$.slotted[key]);
|
277
|
-
}
|
278
|
-
}
|
279
|
-
attributeChangedCallback(attr, _oldValue, newValue) {
|
280
|
-
this[attr] = newValue;
|
281
|
-
}
|
282
|
-
disconnectedCallback() {
|
283
|
-
run_all(this.$$.on_disconnect);
|
284
|
-
}
|
285
|
-
$destroy() {
|
286
|
-
destroy_component(this, 1);
|
287
|
-
this.$destroy = noop;
|
288
|
-
}
|
289
|
-
$on(type, callback) {
|
290
|
-
// TODO should this delegate to addEventListener?
|
291
|
-
const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));
|
292
|
-
callbacks.push(callback);
|
293
|
-
return () => {
|
294
|
-
const index = callbacks.indexOf(callback);
|
295
|
-
if (index !== -1)
|
296
|
-
callbacks.splice(index, 1);
|
297
|
-
};
|
298
|
-
}
|
299
|
-
$set($$props) {
|
300
|
-
if (this.$$set && !is_empty($$props)) {
|
301
|
-
this.$$.skip_bound = true;
|
302
|
-
this.$$set($$props);
|
303
|
-
this.$$.skip_bound = false;
|
304
|
-
}
|
305
|
-
}
|
306
|
-
};
|
307
|
-
}
|
308
|
-
|
309
|
-
function dispatch_dev(type, detail) {
|
310
|
-
document.dispatchEvent(custom_event(type, Object.assign({ version: '3.37.0' }, detail)));
|
311
|
-
}
|
312
|
-
function append_dev(target, node) {
|
313
|
-
dispatch_dev('SvelteDOMInsert', { target, node });
|
314
|
-
append(target, node);
|
315
|
-
}
|
316
|
-
function insert_dev(target, node, anchor) {
|
317
|
-
dispatch_dev('SvelteDOMInsert', { target, node, anchor });
|
318
|
-
insert(target, node, anchor);
|
319
|
-
}
|
320
|
-
function detach_dev(node) {
|
321
|
-
dispatch_dev('SvelteDOMRemove', { node });
|
322
|
-
detach(node);
|
323
|
-
}
|
324
|
-
function listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {
|
325
|
-
const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];
|
326
|
-
if (has_prevent_default)
|
327
|
-
modifiers.push('preventDefault');
|
328
|
-
if (has_stop_propagation)
|
329
|
-
modifiers.push('stopPropagation');
|
330
|
-
dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });
|
331
|
-
const dispose = listen(node, event, handler, options);
|
332
|
-
return () => {
|
333
|
-
dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });
|
334
|
-
dispose();
|
335
|
-
};
|
336
|
-
}
|
337
|
-
function attr_dev(node, attribute, value) {
|
338
|
-
attr(node, attribute, value);
|
339
|
-
if (value == null)
|
340
|
-
dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });
|
341
|
-
else
|
342
|
-
dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });
|
343
|
-
}
|
344
|
-
function set_data_dev(text, data) {
|
345
|
-
data = '' + data;
|
346
|
-
if (text.wholeText === data)
|
347
|
-
return;
|
348
|
-
dispatch_dev('SvelteDOMSetData', { node: text, data });
|
349
|
-
text.data = data;
|
350
|
-
}
|
351
|
-
function validate_slots(name, slot, keys) {
|
352
|
-
for (const slot_key of Object.keys(slot)) {
|
353
|
-
if (!~keys.indexOf(slot_key)) {
|
354
|
-
console.warn(`<${name}> received an unexpected slot "${slot_key}".`);
|
355
|
-
}
|
356
|
-
}
|
357
|
-
}
|
358
|
-
|
359
|
-
/* src/CasinoTournamentsDetails.svelte generated by Svelte v3.37.0 */
|
360
|
-
const file = "src/CasinoTournamentsDetails.svelte";
|
361
|
-
|
362
|
-
// (18:2) {#if title}
|
363
|
-
function create_if_block_1(ctx) {
|
364
|
-
let div1;
|
365
|
-
let p;
|
366
|
-
let t0;
|
367
|
-
let t1;
|
368
|
-
let div0;
|
369
|
-
let mounted;
|
370
|
-
let dispose;
|
371
|
-
|
372
|
-
function select_block_type(ctx, dirty) {
|
373
|
-
if (!/*collapsed*/ ctx[2]) return create_if_block_2;
|
374
|
-
return create_else_block;
|
375
|
-
}
|
376
|
-
|
377
|
-
let current_block_type = select_block_type(ctx);
|
378
|
-
let if_block = current_block_type(ctx);
|
379
|
-
|
380
|
-
const block = {
|
381
|
-
c: function create() {
|
382
|
-
div1 = element("div");
|
383
|
-
p = element("p");
|
384
|
-
t0 = text(/*title*/ ctx[0]);
|
385
|
-
t1 = space();
|
386
|
-
div0 = element("div");
|
387
|
-
if_block.c();
|
388
|
-
attr_dev(p, "class", "Title");
|
389
|
-
add_location(p, file, 19, 6, 476);
|
390
|
-
attr_dev(div0, "class", "CollapseButton");
|
391
|
-
add_location(div0, file, 20, 6, 511);
|
392
|
-
attr_dev(div1, "class", "DetailsTitle");
|
393
|
-
add_location(div1, file, 18, 4, 443);
|
394
|
-
},
|
395
|
-
m: function mount(target, anchor) {
|
396
|
-
insert_dev(target, div1, anchor);
|
397
|
-
append_dev(div1, p);
|
398
|
-
append_dev(p, t0);
|
399
|
-
append_dev(div1, t1);
|
400
|
-
append_dev(div1, div0);
|
401
|
-
if_block.m(div0, null);
|
402
|
-
|
403
|
-
if (!mounted) {
|
404
|
-
dispose = listen_dev(div0, "click", /*click_handler*/ ctx[5], false, false, false);
|
405
|
-
mounted = true;
|
406
|
-
}
|
407
|
-
},
|
408
|
-
p: function update(ctx, dirty) {
|
409
|
-
if (dirty & /*title*/ 1) set_data_dev(t0, /*title*/ ctx[0]);
|
410
|
-
|
411
|
-
if (current_block_type !== (current_block_type = select_block_type(ctx))) {
|
412
|
-
if_block.d(1);
|
413
|
-
if_block = current_block_type(ctx);
|
414
|
-
|
415
|
-
if (if_block) {
|
416
|
-
if_block.c();
|
417
|
-
if_block.m(div0, null);
|
418
|
-
}
|
419
|
-
}
|
420
|
-
},
|
421
|
-
d: function destroy(detaching) {
|
422
|
-
if (detaching) detach_dev(div1);
|
423
|
-
if_block.d();
|
424
|
-
mounted = false;
|
425
|
-
dispose();
|
426
|
-
}
|
427
|
-
};
|
428
|
-
|
429
|
-
dispatch_dev("SvelteRegisterBlock", {
|
430
|
-
block,
|
431
|
-
id: create_if_block_1.name,
|
432
|
-
type: "if",
|
433
|
-
source: "(18:2) {#if title}",
|
434
|
-
ctx
|
435
|
-
});
|
436
|
-
|
437
|
-
return block;
|
438
|
-
}
|
439
|
-
|
440
|
-
// (26:8) {:else}
|
441
|
-
function create_else_block(ctx) {
|
442
|
-
let svg;
|
443
|
-
let path;
|
444
|
-
|
445
|
-
const block = {
|
446
|
-
c: function create() {
|
447
|
-
svg = svg_element("svg");
|
448
|
-
path = svg_element("path");
|
449
|
-
attr_dev(path, "d", "M6 9l6 6 6-6");
|
450
|
-
add_location(path, file, 27, 12, 1056);
|
451
|
-
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
452
|
-
attr_dev(svg, "width", "24");
|
453
|
-
attr_dev(svg, "height", "24");
|
454
|
-
attr_dev(svg, "viewBox", "0 0 24 24");
|
455
|
-
attr_dev(svg, "fill", "none");
|
456
|
-
attr_dev(svg, "stroke", "#ffffff");
|
457
|
-
attr_dev(svg, "stroke-width", "2");
|
458
|
-
attr_dev(svg, "stroke-linecap", "round");
|
459
|
-
attr_dev(svg, "stroke-linejoin", "round");
|
460
|
-
add_location(svg, file, 26, 10, 867);
|
461
|
-
},
|
462
|
-
m: function mount(target, anchor) {
|
463
|
-
insert_dev(target, svg, anchor);
|
464
|
-
append_dev(svg, path);
|
465
|
-
},
|
466
|
-
d: function destroy(detaching) {
|
467
|
-
if (detaching) detach_dev(svg);
|
468
|
-
}
|
469
|
-
};
|
470
|
-
|
471
|
-
dispatch_dev("SvelteRegisterBlock", {
|
472
|
-
block,
|
473
|
-
id: create_else_block.name,
|
474
|
-
type: "else",
|
475
|
-
source: "(26:8) {:else}",
|
476
|
-
ctx
|
477
|
-
});
|
478
|
-
|
479
|
-
return block;
|
480
|
-
}
|
481
|
-
|
482
|
-
// (22:8) {#if !collapsed}
|
483
|
-
function create_if_block_2(ctx) {
|
484
|
-
let svg;
|
485
|
-
let path;
|
486
|
-
|
487
|
-
const block = {
|
488
|
-
c: function create() {
|
489
|
-
svg = svg_element("svg");
|
490
|
-
path = svg_element("path");
|
491
|
-
attr_dev(path, "d", "M18 15l-6-6-6 6");
|
492
|
-
add_location(path, file, 23, 12, 796);
|
493
|
-
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
494
|
-
attr_dev(svg, "width", "24");
|
495
|
-
attr_dev(svg, "height", "24");
|
496
|
-
attr_dev(svg, "viewBox", "0 0 24 24");
|
497
|
-
attr_dev(svg, "fill", "none");
|
498
|
-
attr_dev(svg, "stroke", "#ffffff");
|
499
|
-
attr_dev(svg, "stroke-width", "2");
|
500
|
-
attr_dev(svg, "stroke-linecap", "round");
|
501
|
-
attr_dev(svg, "stroke-linejoin", "round");
|
502
|
-
add_location(svg, file, 22, 10, 607);
|
503
|
-
},
|
504
|
-
m: function mount(target, anchor) {
|
505
|
-
insert_dev(target, svg, anchor);
|
506
|
-
append_dev(svg, path);
|
507
|
-
},
|
508
|
-
d: function destroy(detaching) {
|
509
|
-
if (detaching) detach_dev(svg);
|
510
|
-
}
|
511
|
-
};
|
512
|
-
|
513
|
-
dispatch_dev("SvelteRegisterBlock", {
|
514
|
-
block,
|
515
|
-
id: create_if_block_2.name,
|
516
|
-
type: "if",
|
517
|
-
source: "(22:8) {#if !collapsed}",
|
518
|
-
ctx
|
519
|
-
});
|
520
|
-
|
521
|
-
return block;
|
522
|
-
}
|
523
|
-
|
524
|
-
// (35:2) {#if text && !collapsed}
|
525
|
-
function create_if_block(ctx) {
|
526
|
-
let div;
|
527
|
-
let setContent_action;
|
528
|
-
let mounted;
|
529
|
-
let dispose;
|
530
|
-
|
531
|
-
const block = {
|
532
|
-
c: function create() {
|
533
|
-
div = element("div");
|
534
|
-
attr_dev(div, "class", "DetailsContent sc");
|
535
|
-
add_location(div, file, 35, 4, 1176);
|
536
|
-
},
|
537
|
-
m: function mount(target, anchor) {
|
538
|
-
insert_dev(target, div, anchor);
|
539
|
-
|
540
|
-
if (!mounted) {
|
541
|
-
dispose = action_destroyer(setContent_action = /*setContent*/ ctx[4].call(null, div, /*text*/ ctx[1]));
|
542
|
-
mounted = true;
|
543
|
-
}
|
544
|
-
},
|
545
|
-
p: function update(ctx, dirty) {
|
546
|
-
if (setContent_action && is_function(setContent_action.update) && dirty & /*text*/ 2) setContent_action.update.call(null, /*text*/ ctx[1]);
|
547
|
-
},
|
548
|
-
d: function destroy(detaching) {
|
549
|
-
if (detaching) detach_dev(div);
|
550
|
-
mounted = false;
|
551
|
-
dispose();
|
552
|
-
}
|
553
|
-
};
|
554
|
-
|
555
|
-
dispatch_dev("SvelteRegisterBlock", {
|
556
|
-
block,
|
557
|
-
id: create_if_block.name,
|
558
|
-
type: "if",
|
559
|
-
source: "(35:2) {#if text && !collapsed}",
|
560
|
-
ctx
|
561
|
-
});
|
562
|
-
|
563
|
-
return block;
|
564
|
-
}
|
565
|
-
|
566
|
-
function create_fragment(ctx) {
|
567
|
-
let div;
|
568
|
-
let t;
|
569
|
-
let if_block0 = /*title*/ ctx[0] && create_if_block_1(ctx);
|
570
|
-
let if_block1 = /*text*/ ctx[1] && !/*collapsed*/ ctx[2] && create_if_block(ctx);
|
571
|
-
|
572
|
-
const block = {
|
573
|
-
c: function create() {
|
574
|
-
div = element("div");
|
575
|
-
if (if_block0) if_block0.c();
|
576
|
-
t = space();
|
577
|
-
if (if_block1) if_block1.c();
|
578
|
-
this.c = noop;
|
579
|
-
attr_dev(div, "class", "DetailsCard");
|
580
|
-
add_location(div, file, 16, 0, 399);
|
581
|
-
},
|
582
|
-
l: function claim(nodes) {
|
583
|
-
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
|
584
|
-
},
|
585
|
-
m: function mount(target, anchor) {
|
586
|
-
insert_dev(target, div, anchor);
|
587
|
-
if (if_block0) if_block0.m(div, null);
|
588
|
-
append_dev(div, t);
|
589
|
-
if (if_block1) if_block1.m(div, null);
|
590
|
-
},
|
591
|
-
p: function update(ctx, [dirty]) {
|
592
|
-
if (/*title*/ ctx[0]) {
|
593
|
-
if (if_block0) {
|
594
|
-
if_block0.p(ctx, dirty);
|
595
|
-
} else {
|
596
|
-
if_block0 = create_if_block_1(ctx);
|
597
|
-
if_block0.c();
|
598
|
-
if_block0.m(div, t);
|
599
|
-
}
|
600
|
-
} else if (if_block0) {
|
601
|
-
if_block0.d(1);
|
602
|
-
if_block0 = null;
|
603
|
-
}
|
604
|
-
|
605
|
-
if (/*text*/ ctx[1] && !/*collapsed*/ ctx[2]) {
|
606
|
-
if (if_block1) {
|
607
|
-
if_block1.p(ctx, dirty);
|
608
|
-
} else {
|
609
|
-
if_block1 = create_if_block(ctx);
|
610
|
-
if_block1.c();
|
611
|
-
if_block1.m(div, null);
|
612
|
-
}
|
613
|
-
} else if (if_block1) {
|
614
|
-
if_block1.d(1);
|
615
|
-
if_block1 = null;
|
616
|
-
}
|
617
|
-
},
|
618
|
-
i: noop,
|
619
|
-
o: noop,
|
620
|
-
d: function destroy(detaching) {
|
621
|
-
if (detaching) detach_dev(div);
|
622
|
-
if (if_block0) if_block0.d();
|
623
|
-
if (if_block1) if_block1.d();
|
624
|
-
}
|
625
|
-
};
|
626
|
-
|
627
|
-
dispatch_dev("SvelteRegisterBlock", {
|
628
|
-
block,
|
629
|
-
id: create_fragment.name,
|
630
|
-
type: "component",
|
631
|
-
source: "",
|
632
|
-
ctx
|
633
|
-
});
|
634
|
-
|
635
|
-
return block;
|
636
|
-
}
|
637
|
-
|
638
|
-
function instance($$self, $$props, $$invalidate) {
|
639
|
-
let { $$slots: slots = {}, $$scope } = $$props;
|
640
|
-
validate_slots("undefined", slots, []);
|
641
|
-
let { title = "" } = $$props;
|
642
|
-
let { text = "" } = $$props;
|
643
|
-
let collapsed = false;
|
644
|
-
|
645
|
-
const collapseText = () => {
|
646
|
-
$$invalidate(2, collapsed = !collapsed);
|
647
|
-
};
|
648
|
-
|
649
|
-
const setContent = (element, content) => {
|
650
|
-
let htmlContent = document.createElement("div");
|
651
|
-
htmlContent.innerHTML = content;
|
652
|
-
element.append(htmlContent);
|
653
|
-
};
|
654
|
-
|
655
|
-
const writable_props = ["title", "text"];
|
656
|
-
|
657
|
-
Object.keys($$props).forEach(key => {
|
658
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<undefined> was created with unknown prop '${key}'`);
|
659
|
-
});
|
660
|
-
|
661
|
-
const click_handler = () => collapseText();
|
662
|
-
|
663
|
-
$$self.$$set = $$props => {
|
664
|
-
if ("title" in $$props) $$invalidate(0, title = $$props.title);
|
665
|
-
if ("text" in $$props) $$invalidate(1, text = $$props.text);
|
666
|
-
};
|
667
|
-
|
668
|
-
$$self.$capture_state = () => ({
|
669
|
-
onMount,
|
670
|
-
title,
|
671
|
-
text,
|
672
|
-
collapsed,
|
673
|
-
collapseText,
|
674
|
-
setContent
|
675
|
-
});
|
676
|
-
|
677
|
-
$$self.$inject_state = $$props => {
|
678
|
-
if ("title" in $$props) $$invalidate(0, title = $$props.title);
|
679
|
-
if ("text" in $$props) $$invalidate(1, text = $$props.text);
|
680
|
-
if ("collapsed" in $$props) $$invalidate(2, collapsed = $$props.collapsed);
|
681
|
-
};
|
682
|
-
|
683
|
-
if ($$props && "$$inject" in $$props) {
|
684
|
-
$$self.$inject_state($$props.$$inject);
|
685
|
-
}
|
686
|
-
|
687
|
-
return [title, text, collapsed, collapseText, setContent, click_handler];
|
688
|
-
}
|
689
|
-
|
690
|
-
class CasinoTournamentsDetails extends SvelteElement {
|
691
|
-
constructor(options) {
|
692
|
-
super();
|
693
|
-
this.shadowRoot.innerHTML = `<style>*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box;font-family:"Helvetica Neue", "Helvetica", sans-serif}.Title{text-transform:uppercase}.DetailsCard{border:solid #30313c 1px;background:#000;color:#ffffff;width:100%;margin:25px 0 25px 0}.DetailsTitle{padding:0 20px;height:60px;display:flex;align-items:center;justify-content:space-between;background:#0a0c19}.DetailsContent{overflow:auto;height:150px;font-size:14px;padding:10px 10px 10px 20px;margin:10px 20px 10px 0}.sc::-webkit-scrollbar{width:5px;height:5px}.sc::-webkit-scrollbar-track{background-color:rgba(255, 255, 255, 0.1);border-radius:10px}.sc::-webkit-scrollbar-thumb{background-color:#fff;border-radius:10px}</style>`;
|
694
|
-
|
695
|
-
init(
|
696
|
-
this,
|
697
|
-
{
|
698
|
-
target: this.shadowRoot,
|
699
|
-
props: attribute_to_object(this.attributes),
|
700
|
-
customElement: true
|
701
|
-
},
|
702
|
-
instance,
|
703
|
-
create_fragment,
|
704
|
-
safe_not_equal,
|
705
|
-
{ title: 0, text: 1 }
|
706
|
-
);
|
707
|
-
|
708
|
-
if (options) {
|
709
|
-
if (options.target) {
|
710
|
-
insert_dev(options.target, this, options.anchor);
|
711
|
-
}
|
712
|
-
|
713
|
-
if (options.props) {
|
714
|
-
this.$set(options.props);
|
715
|
-
flush();
|
716
|
-
}
|
717
|
-
}
|
718
|
-
}
|
719
|
-
|
720
|
-
static get observedAttributes() {
|
721
|
-
return ["title", "text"];
|
722
|
-
}
|
723
|
-
|
724
|
-
get title() {
|
725
|
-
return this.$$.ctx[0];
|
726
|
-
}
|
727
|
-
|
728
|
-
set title(title) {
|
729
|
-
this.$set({ title });
|
730
|
-
flush();
|
731
|
-
}
|
732
|
-
|
733
|
-
get text() {
|
734
|
-
return this.$$.ctx[1];
|
735
|
-
}
|
736
|
-
|
737
|
-
set text(text) {
|
738
|
-
this.$set({ text });
|
739
|
-
flush();
|
740
|
-
}
|
741
|
-
}
|
742
|
-
|
743
|
-
!customElements.get('casino-tournaments-details') && customElements.define('casino-tournaments-details', CasinoTournamentsDetails);
|
744
|
-
|
745
|
-
return CasinoTournamentsDetails;
|
746
|
-
|
747
|
-
})));
|
1
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).app=e()}(this,function(){"use strict";function d(){}function f(t){return t()}function p(){return Object.create(null)}function h(t){t.forEach(f)}function m(t){return"function"==typeof t}function e(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}function g(t,e){t.appendChild(e)}function x(t,e,n){t.insertBefore(e,n||null)}function $(t){t.parentNode.removeChild(t)}function b(t){return document.createElement(t)}function r(t){return document.createElementNS("http://www.w3.org/2000/svg",t)}function t(t){return document.createTextNode(t)}function w(){return t(" ")}function y(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}let v;function k(t){v=t}const _=[],o=[],i=[],s=[],E=Promise.resolve();let C=!1;function T(t){i.push(t)}let l=!1;const c=new Set;function j(){if(!l){l=!0;do{for(let t=0;t<_.length;t+=1){var e=_[t];k(e),function(t){{var e;null!==t.fragment&&(t.update(),h(t.before_update),e=t.dirty,t.dirty=[-1],t.fragment&&t.fragment.p(t.ctx,e),t.after_update.forEach(T))}}(e.$$)}for(k(null),_.length=0;o.length;)o.pop()();for(let t=0;t<i.length;t+=1){const n=i[t];c.has(n)||(c.add(n),n())}}while(i.length=0,_.length);for(;s.length;)s.pop()();C=!1,l=!1,c.clear()}}const A=new Set;function n(o,t,e,n,r,i,s=[-1]){var l,c=v;k(o);const a=o.$$={fragment:null,ctx:null,props:i,update:d,not_equal:r,bound:p(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(c?c.$$.context:t.context||[]),callbacks:p(),dirty:s,skip_bound:!1};let u=!1;if(a.ctx=e?e(o,t.props||{},(t,e,...n)=>{n=n.length?n[0]:e;return a.ctx&&r(a.ctx[t],a.ctx[t]=n)&&(!a.skip_bound&&a.bound[t]&&a.bound[t](n),u&&(n=t,-1===(t=o).$$.dirty[0]&&(_.push(t),C||(C=!0,E.then(j)),t.$$.dirty.fill(0)),t.$$.dirty[n/31|0]|=1<<n%31)),e}):[],a.update(),u=!0,h(a.before_update),a.fragment=!!n&&n(a.ctx),t.target){if(t.hydrate){const d=(n=t.target,Array.from(n.childNodes));a.fragment&&a.fragment.l(d),d.forEach($)}else a.fragment&&a.fragment.c();t.intro&&(l=o.$$.fragment)&&l.i&&(A.delete(l),l.i(void 0)),function(e,t,n,o){const{fragment:r,on_mount:i,on_destroy:s,after_update:l}=e.$$;r&&r.m(t,n),o||T(()=>{var t=i.map(f).filter(m);s?s.push(...t):h(t),e.$$.on_mount=[]}),l.forEach(T)}(o,t.target,t.anchor,t.customElement),j()}k(c)}let a;function u(r){let i,s,l,c,a,u,d;function o(t){return t[2]?M:D}let f=o(r),p=f(r);return{c(){i=b("div"),s=b("p"),l=t(r[0]),c=w(),a=b("div"),p.c(),y(s,"class","Title"),y(a,"class","CollapseButton"),y(i,"class","DetailsTitle")},m(t,e){var n,o;x(t,i,e),g(i,s),g(s,l),g(i,c),g(i,a),p.m(a,null),u||(n=a,o=r[5],n.addEventListener("click",o,void 0),d=()=>n.removeEventListener("click",o,void 0),u=!0)},p(t,e){var n;1&e&&(n=l,e=t[0],n.wholeText!==(e=""+e)&&(n.data=e)),f!==(f=o(t))&&(p.d(1),p=f(t),p&&(p.c(),p.m(a,null)))},d(t){t&&$(i),p.d(),u=!1,d()}}}function M(t){let n,o;return{c(){n=r("svg"),o=r("path"),y(o,"d","M6 9l6 6 6-6"),y(n,"xmlns","http://www.w3.org/2000/svg"),y(n,"width","24"),y(n,"height","24"),y(n,"viewBox","0 0 24 24"),y(n,"fill","none"),y(n,"stroke","#ffffff"),y(n,"stroke-width","2"),y(n,"stroke-linecap","round"),y(n,"stroke-linejoin","round")},m(t,e){x(t,n,e),g(n,o)},d(t){t&&$(n)}}}function D(t){let n,o;return{c(){n=r("svg"),o=r("path"),y(o,"d","M18 15l-6-6-6 6"),y(n,"xmlns","http://www.w3.org/2000/svg"),y(n,"width","24"),y(n,"height","24"),y(n,"viewBox","0 0 24 24"),y(n,"fill","none"),y(n,"stroke","#ffffff"),y(n,"stroke-width","2"),y(n,"stroke-linecap","round"),y(n,"stroke-linejoin","round")},m(t,e){x(t,n,e),g(n,o)},d(t){t&&$(n)}}}function L(n){let o,r,i,s;return{c(){o=b("div"),y(o,"class","DetailsContent sc")},m(t,e){x(t,o,e),i||(e=r=n[4].call(null,o,n[1]),s=e&&m(e.destroy)?e.destroy:d,i=!0)},p(t,e){r&&m(r.update)&&2&e&&r.update.call(null,t[1])},d(t){t&&$(o),i=!1,s()}}}function S(t){let n,o,r=t[0]&&u(t),i=t[1]&&!t[2]&&L(t);return{c(){n=b("div"),r&&r.c(),o=w(),i&&i.c(),this.c=d,y(n,"class","DetailsCard")},m(t,e){x(t,n,e),r&&r.m(n,null),g(n,o),i&&i.m(n,null)},p(t,[e]){t[0]?r?r.p(t,e):(r=u(t),r.c(),r.m(n,o)):r&&(r.d(1),r=null),t[1]&&!t[2]?i?i.p(t,e):(i=L(t),i.c(),i.m(n,null)):i&&(i.d(1),i=null)},i:d,o:d,d(t){t&&$(n),r&&r.d(),i&&i.d()}}}function H(t,e,n){let{title:o=""}=e,{text:r=""}=e,i=!1;const s=()=>{n(2,i=!i)};return t.$$set=t=>{"title"in t&&n(0,o=t.title),"text"in t&&n(1,r=t.text)},[o,r,i,s,(t,e)=>{let n=document.createElement("div");n.innerHTML=e,t.append(n)},()=>s()]}"function"==typeof HTMLElement&&(a=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:t}=this.$$;this.$$.on_disconnect=t.map(f).filter(m);for(const t in this.$$.slotted)this.appendChild(this.$$.slotted[t])}attributeChangedCallback(t,e,n){this[t]=n}disconnectedCallback(){h(this.$$.on_disconnect)}$destroy(){!function(t){const e=t.$$;null!==e.fragment&&(h(e.on_destroy),e.fragment&&e.fragment.d(1),e.on_destroy=e.fragment=null,e.ctx=[])}(this),this.$destroy=d}$on(t,e){const n=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return n.push(e),()=>{var t=n.indexOf(e);-1!==t&&n.splice(t,1)}}$set(t){this.$$set&&0!==Object.keys(t).length&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}});class B extends a{constructor(t){super(),this.shadowRoot.innerHTML="<style>:host{font-family:system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'}*,*::before,*::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}.Title{text-transform:uppercase}.DetailsCard{border:solid #30313c 1px;background:#000;color:#ffffff;width:100%;margin:25px 0 25px 0}.DetailsTitle{padding:0 20px;height:60px;display:flex;align-items:center;justify-content:space-between;background:#0a0c19}.DetailsContent{overflow:auto;height:150px;font-size:14px;padding:10px 10px 10px 20px;margin:10px 20px 10px 0}.sc::-webkit-scrollbar{width:5px;height:5px}.sc::-webkit-scrollbar-track{background-color:rgba(255, 255, 255, 0.1);border-radius:10px}.sc::-webkit-scrollbar-thumb{background-color:#fff;border-radius:10px}</style>",n(this,{target:this.shadowRoot,props:function(t){const e={};for(const n of t)e[n.name]=n.value;return e}(this.attributes),customElement:!0},H,S,e,{title:0,text:1}),t&&(t.target&&x(t.target,this,t.anchor),t.props&&(this.$set(t.props),j()))}static get observedAttributes(){return["title","text"]}get title(){return this.$$.ctx[0]}set title(t){this.$set({title:t}),j()}get text(){return this.$$.ctx[1]}set text(t){this.$set({text:t}),j()}}return customElements.get("casino-tournaments-details")||customElements.define("casino-tournaments-details",B),B});
|
748
2
|
//# sourceMappingURL=casino-tournaments-details.js.map
|