@everymatrix/casino-categories-providers 1.12.7 → 1.13.0
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.
|
@@ -51,6 +51,12 @@
|
|
|
51
51
|
function component_subscribe(component, store, callback) {
|
|
52
52
|
component.$$.on_destroy.push(subscribe(store, callback));
|
|
53
53
|
}
|
|
54
|
+
|
|
55
|
+
const globals = (typeof window !== 'undefined'
|
|
56
|
+
? window
|
|
57
|
+
: typeof globalThis !== 'undefined'
|
|
58
|
+
? globalThis
|
|
59
|
+
: global);
|
|
54
60
|
function append(target, node) {
|
|
55
61
|
target.appendChild(node);
|
|
56
62
|
}
|
|
@@ -231,12 +237,6 @@
|
|
|
231
237
|
block.i(local);
|
|
232
238
|
}
|
|
233
239
|
}
|
|
234
|
-
|
|
235
|
-
const globals = (typeof window !== 'undefined'
|
|
236
|
-
? window
|
|
237
|
-
: typeof globalThis !== 'undefined'
|
|
238
|
-
? globalThis
|
|
239
|
-
: global);
|
|
240
240
|
function mount_component(component, target, anchor, customElement) {
|
|
241
241
|
const { fragment, after_update } = component.$$;
|
|
242
242
|
fragment && fragment.m(target, anchor);
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
}
|
|
392
392
|
|
|
393
393
|
function dispatch_dev(type, detail) {
|
|
394
|
-
document.dispatchEvent(custom_event(type, Object.assign({ version: '3.
|
|
394
|
+
document.dispatchEvent(custom_event(type, Object.assign({ version: '3.59.2' }, detail), { bubbles: true }));
|
|
395
395
|
}
|
|
396
396
|
function append_dev(target, node) {
|
|
397
397
|
dispatch_dev('SvelteDOMInsert', { target, node });
|
|
@@ -455,7 +455,7 @@
|
|
|
455
455
|
/**
|
|
456
456
|
* Creates a `Readable` store that allows reading by subscription.
|
|
457
457
|
* @param value initial value
|
|
458
|
-
* @param {StartStopNotifier}
|
|
458
|
+
* @param {StartStopNotifier} [start]
|
|
459
459
|
*/
|
|
460
460
|
function readable(value, start) {
|
|
461
461
|
return {
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
/**
|
|
466
466
|
* Create a `Writable` store that allows both updating and reading by subscription.
|
|
467
467
|
* @param {*=}value initial value
|
|
468
|
-
* @param {StartStopNotifier=}
|
|
468
|
+
* @param {StartStopNotifier=} start
|
|
469
469
|
*/
|
|
470
470
|
function writable(value, start = noop) {
|
|
471
471
|
let stop;
|
|
@@ -700,7 +700,7 @@
|
|
|
700
700
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
701
701
|
PERFORMANCE OF THIS SOFTWARE.
|
|
702
702
|
***************************************************************************** */
|
|
703
|
-
/* global Reflect, Promise */
|
|
703
|
+
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
704
704
|
|
|
705
705
|
var extendStatics = function(d, b) {
|
|
706
706
|
extendStatics = Object.setPrototypeOf ||
|
|
@@ -736,7 +736,12 @@
|
|
|
736
736
|
}
|
|
737
737
|
}
|
|
738
738
|
return to.concat(ar || Array.prototype.slice.call(from));
|
|
739
|
-
}
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
742
|
+
var e = new Error(message);
|
|
743
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
744
|
+
};
|
|
740
745
|
|
|
741
746
|
var ErrorKind;
|
|
742
747
|
(function (ErrorKind) {
|
|
@@ -4746,7 +4751,7 @@
|
|
|
4746
4751
|
}
|
|
4747
4752
|
};
|
|
4748
4753
|
|
|
4749
|
-
/* ../casino-categories/src/CasinoCategories.svelte generated by Svelte v3.
|
|
4754
|
+
/* ../casino-categories/src/CasinoCategories.svelte generated by Svelte v3.59.2 */
|
|
4750
4755
|
|
|
4751
4756
|
const { Object: Object_1$2, console: console_1$2 } = globals;
|
|
4752
4757
|
const file$2 = "../casino-categories/src/CasinoCategories.svelte";
|
|
@@ -5457,7 +5462,7 @@
|
|
|
5457
5462
|
constructor(options) {
|
|
5458
5463
|
super();
|
|
5459
5464
|
const style = document.createElement('style');
|
|
5460
|
-
style.textContent =
|
|
5465
|
+
style.textContent = `*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}.CasinoCategories{display:flex;flex-direction:column;gap:1rem;padding:10px 60px}.CategoryTitle{font-weight:500;position:relative;right:30px;margin:10px 0}.Category{border-radius:7px;display:flex;align-items:center;gap:16px;max-width:300px}.Category.Active{box-shadow:15px 15px 30px #e4e2e2}.CategoryTextContainer{display:flex;flex-direction:column;justify-content:center;gap:10px;font-size:15px}.CategoryTextContainer p:first-child{font-weight:600}.CategoryTextContainer p:last-child{color:#828282;font-weight:300}.CategoryImage{border-radius:4px;object-fit:cover;height:64px;width:64px;font-weight:100}.Message{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);font-weight:600}`;
|
|
5461
5466
|
this.shadowRoot.appendChild(style);
|
|
5462
5467
|
|
|
5463
5468
|
init(
|
|
@@ -5684,7 +5689,7 @@
|
|
|
5684
5689
|
x.set(_locale);
|
|
5685
5690
|
}
|
|
5686
5691
|
|
|
5687
|
-
/* ../casino-providers/src/CasinoProviders.svelte generated by Svelte v3.
|
|
5692
|
+
/* ../casino-providers/src/CasinoProviders.svelte generated by Svelte v3.59.2 */
|
|
5688
5693
|
|
|
5689
5694
|
const { Object: Object_1$1, console: console_1$1 } = globals;
|
|
5690
5695
|
const file$1 = "../casino-providers/src/CasinoProviders.svelte";
|
|
@@ -6360,7 +6365,7 @@
|
|
|
6360
6365
|
constructor(options) {
|
|
6361
6366
|
super();
|
|
6362
6367
|
const style = document.createElement('style');
|
|
6363
|
-
style.textContent =
|
|
6368
|
+
style.textContent = `*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}.CasinoProviders{display:flex;flex-direction:column;gap:1rem;padding:10px 60px}.ProviderTitle{font-weight:500;position:relative;right:30px;margin:10px 0}.Provider{border-radius:7px;display:flex;align-items:center;gap:16px;max-width:300px}.ProviderTextContainer{display:flex;flex-direction:column;justify-content:center;gap:10px;font-size:15px}.ProviderTextContainer p:first-child{font-weight:600}.ProviderTextContainer p:last-child{color:#828282;font-weight:300}.ProviderImage{border-radius:4px;object-fit:contain;height:64px;width:64px;font-weight:100;border:0.5px solid #e4e2e2;overflow:hidden;object-fit:contain}.Message{font-weight:600;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}`;
|
|
6364
6369
|
this.shadowRoot.appendChild(style);
|
|
6365
6370
|
|
|
6366
6371
|
init(
|
|
@@ -6464,7 +6469,7 @@
|
|
|
6464
6469
|
|
|
6465
6470
|
!customElements.get('casino-providers') && customElements.define('casino-providers', CasinoProviders);
|
|
6466
6471
|
|
|
6467
|
-
/* src/CasinoCategoriesProviders.svelte generated by Svelte v3.
|
|
6472
|
+
/* src/CasinoCategoriesProviders.svelte generated by Svelte v3.59.2 */
|
|
6468
6473
|
|
|
6469
6474
|
const { Object: Object_1, console: console_1 } = globals;
|
|
6470
6475
|
const file = "src/CasinoCategoriesProviders.svelte";
|
|
@@ -6873,7 +6878,7 @@
|
|
|
6873
6878
|
constructor(options) {
|
|
6874
6879
|
super();
|
|
6875
6880
|
const style = document.createElement('style');
|
|
6876
|
-
style.textContent =
|
|
6881
|
+
style.textContent = `*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}.NotVisible{display:none}.Header{display:flex;max-width:100%;min-width:320px;margin-bottom:14px}.HeaderButton{flex:1 2 0;min-height:48px;margin:0;border:none;background:#ffffff;color:#828282;box-shadow:1px 2px 2px rgba(130, 130, 130, 0.1)}.HeaderButton.Active{box-shadow:none;border-bottom:2px solid #c8102e;color:#c8102e}`;
|
|
6877
6882
|
this.shadowRoot.appendChild(style);
|
|
6878
6883
|
|
|
6879
6884
|
init(
|