@everymatrix/casino-game-thumbnail 1.60.0 → 1.60.2

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.
@@ -0,0 +1,152 @@
1
+ import { r as o, h as t, H as i } from "./index-b2193545-BlEoeZZL.js";
2
+ const n = ":host{display:block;--emw-skeleton-rectangle-background:#c2c2c2;--emw-skeleton-circle-background:#c2c2c2;--emw-skeleton-text-background:#c2c2c2;--emw-skeleton-title-background:#c2c2c2;--emw-skeleton-image-background:#c2c2c2;--emw-skeleton-logo-background:#c2c2c2;--emw-skeleton-primary-color:#e0e0e0;--emw-skeleton-secondary-color:#f0f0f0}.Skeleton{animation:skeleton-loading 1s linear infinite alternate}.Rectangle{background-color:var(--emw-skeleton-rectangle-background, #c2c2c2);width:var(--emw-skeleton-rectangle-width, 400px);height:var(--emw-skeleton-rectangle-height, 200px);border-radius:var(--emw-skeleton-rectangle-border-radius, 2px)}.Circle{background-color:var(--emw-skeleton-circle-background, #c2c2c2);width:var(--emw-skeleton-circle-size, 400px);height:var(--emw-skeleton-circle-size, 400px);border-radius:50%}.Text{background-color:var(--emw-skeleton-text-background, #c2c2c2);width:var(--emw-skeleton-text-width, 500px);height:var(--emw-skeleton-text-height, 20px);border-radius:var(--emw-skeleton-text-border-radius, 5px);margin-bottom:var(--emw-skeleton-text-margin-bottom, 5px)}.Text:last-child{width:var(--emw-skeleton-text-width-100, 300px)}.Title{background-color:var(--emw-skeleton-title-background, #c2c2c2);width:var(--emw-skeleton-title-width, 300px);height:var(--emw-skeleton-title-height, 30px);border-radius:var(--emw-skeleton-title-border-radius, 5px);margin-bottom:var(--emw-skeleton-title-margin-bottom, 5px)}.Image{background-color:var(--emw-skeleton-image-background, #c2c2c2);width:var(--emw-skeleton-image-width, 250px);height:var(--emw-skeleton-image-height, 200px);border-radius:var(--emw-skeleton-image-border-radius, 10px)}.Logo{background-color:var(--emw-skeleton-logo-background, #c2c2c2);width:var(--emw-skeleton-logo-width, 120px);height:var(--emw-skeleton-logo-height, 75px);border-radius:var(--emw-skeleton-logo-border-radius, 5px)}@keyframes skeleton-loading{0%{background-color:var(--emw-skeleton-primary-color, var(--emw-skeleton-color-0, #c2c2c2))}100%{background-color:var(--emw-skeleton-secondary-color, var(--emw-skeleton-color-100, #f0f0f0))}}", s = n, a = class {
3
+ constructor(e) {
4
+ o(this, e), this.structure = void 0, this.width = void 0, this.height = void 0, this.borderRadius = void 0, this.marginBottom = void 0, this.marginTop = void 0, this.marginLeft = void 0, this.marginRight = void 0, this.animation = !0, this.rows = void 0, this.size = void 0, this.color = void 0, this.primaryColor = void 0, this.secondaryColor = void 0;
5
+ }
6
+ handleStructureChange(e, r) {
7
+ r !== e && this.handleStructure(e);
8
+ }
9
+ handleStructure(e) {
10
+ switch (e) {
11
+ case "logo":
12
+ return this.renderLogo();
13
+ case "image":
14
+ return this.renderImage();
15
+ case "title":
16
+ return this.renderTitle();
17
+ case "text":
18
+ return this.renderText();
19
+ case "rectangle":
20
+ return this.renderRectangle();
21
+ case "circle":
22
+ return this.renderCircle();
23
+ default:
24
+ return null;
25
+ }
26
+ }
27
+ renderLogo() {
28
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Logo " + (this.animation ? "Skeleton" : "") }));
29
+ }
30
+ renderImage() {
31
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Image " + (this.animation ? "Skeleton" : "") }));
32
+ }
33
+ renderTitle() {
34
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Title " + (this.animation ? "Skeleton" : "") }));
35
+ }
36
+ renderText() {
37
+ return t("div", { class: "SkeletonContainer" }, Array.from({ length: this.rows > 0 ? this.rows : 1 }).map((e, r) => t("div", { key: r, class: "Text " + (this.animation ? "Skeleton" : "") })));
38
+ }
39
+ renderRectangle() {
40
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Rectangle " + (this.animation ? "Skeleton" : "") }));
41
+ }
42
+ renderCircle() {
43
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Circle " + (this.animation ? "Skeleton" : "") }));
44
+ }
45
+ render() {
46
+ let e = "";
47
+ switch (this.structure) {
48
+ case "logo":
49
+ e = `
50
+ :host {
51
+ --emw-skeleton-logo-width: ${this.width};
52
+ --emw-skeleton-logo-height: ${this.height};
53
+ --emw-skeleton-logo-border-radius: ${this.borderRadius}px;
54
+ --emw-skeleton-logo-margin-bottom: ${this.marginBottom}px;
55
+ --emw-skeleton-logo-margin-top: ${this.marginTop}px;
56
+ --emw-skeleton-logo-margin-left: ${this.marginLeft}px;
57
+ --emw-skeleton-logo-margin-right: ${this.marginRight}px;
58
+ --emw-skeleton-logo-background: ${this.color};
59
+ --emw-skeleton-primary-color: ${this.primaryColor};
60
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
61
+ }
62
+ `;
63
+ break;
64
+ case "image":
65
+ e = `
66
+ :host {
67
+ --emw-skeleton-image-width: ${this.width};
68
+ --emw-skeleton-image-height: ${this.height};
69
+ --emw-skeleton-image-border-radius: ${this.borderRadius}px;
70
+ --emw-skeleton-image-margin-bottom: ${this.marginBottom}px;
71
+ --emw-skeleton-image-margin-top: ${this.marginTop}px;
72
+ --emw-skeleton-image-margin-left: ${this.marginLeft}px;
73
+ --emw-skeleton-image-margin-right: ${this.marginRight}px;
74
+ --emw-skeleton-image-background: ${this.color};
75
+ --emw-skeleton-primary-color: ${this.primaryColor};
76
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
77
+ }
78
+ `;
79
+ break;
80
+ case "title":
81
+ e = `
82
+ :host {
83
+ --emw-skeleton-title-width: ${this.width};
84
+ --emw-skeleton-title-height: ${this.height};
85
+ --emw-skeleton-title-border-radius: ${this.borderRadius}px;
86
+ --emw-skeleton-title-margin-bottom: ${this.marginBottom}px;
87
+ --emw-skeleton-title-margin-top: ${this.marginTop}px;
88
+ --emw-skeleton-title-margin-left: ${this.marginLeft}px;
89
+ --emw-skeleton-title-margin-right: ${this.marginRight}px;
90
+ --emw-skeleton-title-background: ${this.color};
91
+ --emw-skeleton-primary-color: ${this.primaryColor};
92
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
93
+ }
94
+ `;
95
+ break;
96
+ case "text":
97
+ e = `
98
+ :host {
99
+ --emw-skeleton-text-width: ${this.width};
100
+ --emw-skeleton-text-height: ${this.height};
101
+ --emw-skeleton-text-border-radius: ${this.borderRadius}px;
102
+ --emw-skeleton-text-margin-bottom: ${this.marginBottom}px;
103
+ --emw-skeleton-text-margin-top: ${this.marginTop}px;
104
+ --emw-skeleton-text-margin-left: ${this.marginLeft}px;
105
+ --emw-skeleton-text-margin-right: ${this.marginRight}px;
106
+ --emw-skeleton-text-background: ${this.color};
107
+ --emw-skeleton-primary-color: ${this.primaryColor};
108
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
109
+ }
110
+ `;
111
+ break;
112
+ case "rectangle":
113
+ e = `
114
+ :host {
115
+ --emw-skeleton-rectangle-width: ${this.width};
116
+ --emw-skeleton-rectangle-height: ${this.height};
117
+ --emw-skeleton-rectangle-border-radius: ${this.borderRadius}px;
118
+ --emw-skeleton-rectangle-margin-bottom: ${this.marginBottom}px;
119
+ --emw-skeleton-rectangle-margin-top: ${this.marginTop}px;
120
+ --emw-skeleton-rectangle-margin-left: ${this.marginLeft}px;
121
+ --emw-skeleton-rectangle-margin-right: ${this.marginRight}px;
122
+ --emw-skeleton-rectangle-background: ${this.color};
123
+ --emw-skeleton-primary-color: ${this.primaryColor};
124
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
125
+ }
126
+ `;
127
+ break;
128
+ case "circle":
129
+ e = `
130
+ :host {
131
+ --emw-skeleton-circle-size: ${this.size};
132
+ --emw-skeleton-circle-background: ${this.color};
133
+ --emw-skeleton-primary-color: ${this.primaryColor};
134
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
135
+ }
136
+ `;
137
+ break;
138
+ default:
139
+ e = "";
140
+ }
141
+ return t(i, { key: "58f7f9acd15f0f96b8b6f47f6bea81d49a3857c5" }, t("style", { key: "c72ac31d1c55fd5d18ec334629db45977a0f6124" }, e), this.handleStructure(this.structure));
142
+ }
143
+ static get watchers() {
144
+ return {
145
+ structure: ["handleStructureChange"]
146
+ };
147
+ }
148
+ };
149
+ a.style = s;
150
+ export {
151
+ a as U
152
+ };
@@ -0,0 +1,152 @@
1
+ import { r as o, h as t, H as i } from "./index-b2193545-BJzf08Qh.js";
2
+ const n = ":host{display:block;--emw-skeleton-rectangle-background:#c2c2c2;--emw-skeleton-circle-background:#c2c2c2;--emw-skeleton-text-background:#c2c2c2;--emw-skeleton-title-background:#c2c2c2;--emw-skeleton-image-background:#c2c2c2;--emw-skeleton-logo-background:#c2c2c2;--emw-skeleton-primary-color:#e0e0e0;--emw-skeleton-secondary-color:#f0f0f0}.Skeleton{animation:skeleton-loading 1s linear infinite alternate}.Rectangle{background-color:var(--emw-skeleton-rectangle-background, #c2c2c2);width:var(--emw-skeleton-rectangle-width, 400px);height:var(--emw-skeleton-rectangle-height, 200px);border-radius:var(--emw-skeleton-rectangle-border-radius, 2px)}.Circle{background-color:var(--emw-skeleton-circle-background, #c2c2c2);width:var(--emw-skeleton-circle-size, 400px);height:var(--emw-skeleton-circle-size, 400px);border-radius:50%}.Text{background-color:var(--emw-skeleton-text-background, #c2c2c2);width:var(--emw-skeleton-text-width, 500px);height:var(--emw-skeleton-text-height, 20px);border-radius:var(--emw-skeleton-text-border-radius, 5px);margin-bottom:var(--emw-skeleton-text-margin-bottom, 5px)}.Text:last-child{width:var(--emw-skeleton-text-width-100, 300px)}.Title{background-color:var(--emw-skeleton-title-background, #c2c2c2);width:var(--emw-skeleton-title-width, 300px);height:var(--emw-skeleton-title-height, 30px);border-radius:var(--emw-skeleton-title-border-radius, 5px);margin-bottom:var(--emw-skeleton-title-margin-bottom, 5px)}.Image{background-color:var(--emw-skeleton-image-background, #c2c2c2);width:var(--emw-skeleton-image-width, 250px);height:var(--emw-skeleton-image-height, 200px);border-radius:var(--emw-skeleton-image-border-radius, 10px)}.Logo{background-color:var(--emw-skeleton-logo-background, #c2c2c2);width:var(--emw-skeleton-logo-width, 120px);height:var(--emw-skeleton-logo-height, 75px);border-radius:var(--emw-skeleton-logo-border-radius, 5px)}@keyframes skeleton-loading{0%{background-color:var(--emw-skeleton-primary-color, var(--emw-skeleton-color-0, #c2c2c2))}100%{background-color:var(--emw-skeleton-secondary-color, var(--emw-skeleton-color-100, #f0f0f0))}}", s = n, a = class {
3
+ constructor(e) {
4
+ o(this, e), this.structure = void 0, this.width = void 0, this.height = void 0, this.borderRadius = void 0, this.marginBottom = void 0, this.marginTop = void 0, this.marginLeft = void 0, this.marginRight = void 0, this.animation = !0, this.rows = void 0, this.size = void 0, this.color = void 0, this.primaryColor = void 0, this.secondaryColor = void 0;
5
+ }
6
+ handleStructureChange(e, r) {
7
+ r !== e && this.handleStructure(e);
8
+ }
9
+ handleStructure(e) {
10
+ switch (e) {
11
+ case "logo":
12
+ return this.renderLogo();
13
+ case "image":
14
+ return this.renderImage();
15
+ case "title":
16
+ return this.renderTitle();
17
+ case "text":
18
+ return this.renderText();
19
+ case "rectangle":
20
+ return this.renderRectangle();
21
+ case "circle":
22
+ return this.renderCircle();
23
+ default:
24
+ return null;
25
+ }
26
+ }
27
+ renderLogo() {
28
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Logo " + (this.animation ? "Skeleton" : "") }));
29
+ }
30
+ renderImage() {
31
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Image " + (this.animation ? "Skeleton" : "") }));
32
+ }
33
+ renderTitle() {
34
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Title " + (this.animation ? "Skeleton" : "") }));
35
+ }
36
+ renderText() {
37
+ return t("div", { class: "SkeletonContainer" }, Array.from({ length: this.rows > 0 ? this.rows : 1 }).map((e, r) => t("div", { key: r, class: "Text " + (this.animation ? "Skeleton" : "") })));
38
+ }
39
+ renderRectangle() {
40
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Rectangle " + (this.animation ? "Skeleton" : "") }));
41
+ }
42
+ renderCircle() {
43
+ return t("div", { class: "SkeletonContainer" }, t("div", { class: "Circle " + (this.animation ? "Skeleton" : "") }));
44
+ }
45
+ render() {
46
+ let e = "";
47
+ switch (this.structure) {
48
+ case "logo":
49
+ e = `
50
+ :host {
51
+ --emw-skeleton-logo-width: ${this.width};
52
+ --emw-skeleton-logo-height: ${this.height};
53
+ --emw-skeleton-logo-border-radius: ${this.borderRadius}px;
54
+ --emw-skeleton-logo-margin-bottom: ${this.marginBottom}px;
55
+ --emw-skeleton-logo-margin-top: ${this.marginTop}px;
56
+ --emw-skeleton-logo-margin-left: ${this.marginLeft}px;
57
+ --emw-skeleton-logo-margin-right: ${this.marginRight}px;
58
+ --emw-skeleton-logo-background: ${this.color};
59
+ --emw-skeleton-primary-color: ${this.primaryColor};
60
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
61
+ }
62
+ `;
63
+ break;
64
+ case "image":
65
+ e = `
66
+ :host {
67
+ --emw-skeleton-image-width: ${this.width};
68
+ --emw-skeleton-image-height: ${this.height};
69
+ --emw-skeleton-image-border-radius: ${this.borderRadius}px;
70
+ --emw-skeleton-image-margin-bottom: ${this.marginBottom}px;
71
+ --emw-skeleton-image-margin-top: ${this.marginTop}px;
72
+ --emw-skeleton-image-margin-left: ${this.marginLeft}px;
73
+ --emw-skeleton-image-margin-right: ${this.marginRight}px;
74
+ --emw-skeleton-image-background: ${this.color};
75
+ --emw-skeleton-primary-color: ${this.primaryColor};
76
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
77
+ }
78
+ `;
79
+ break;
80
+ case "title":
81
+ e = `
82
+ :host {
83
+ --emw-skeleton-title-width: ${this.width};
84
+ --emw-skeleton-title-height: ${this.height};
85
+ --emw-skeleton-title-border-radius: ${this.borderRadius}px;
86
+ --emw-skeleton-title-margin-bottom: ${this.marginBottom}px;
87
+ --emw-skeleton-title-margin-top: ${this.marginTop}px;
88
+ --emw-skeleton-title-margin-left: ${this.marginLeft}px;
89
+ --emw-skeleton-title-margin-right: ${this.marginRight}px;
90
+ --emw-skeleton-title-background: ${this.color};
91
+ --emw-skeleton-primary-color: ${this.primaryColor};
92
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
93
+ }
94
+ `;
95
+ break;
96
+ case "text":
97
+ e = `
98
+ :host {
99
+ --emw-skeleton-text-width: ${this.width};
100
+ --emw-skeleton-text-height: ${this.height};
101
+ --emw-skeleton-text-border-radius: ${this.borderRadius}px;
102
+ --emw-skeleton-text-margin-bottom: ${this.marginBottom}px;
103
+ --emw-skeleton-text-margin-top: ${this.marginTop}px;
104
+ --emw-skeleton-text-margin-left: ${this.marginLeft}px;
105
+ --emw-skeleton-text-margin-right: ${this.marginRight}px;
106
+ --emw-skeleton-text-background: ${this.color};
107
+ --emw-skeleton-primary-color: ${this.primaryColor};
108
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
109
+ }
110
+ `;
111
+ break;
112
+ case "rectangle":
113
+ e = `
114
+ :host {
115
+ --emw-skeleton-rectangle-width: ${this.width};
116
+ --emw-skeleton-rectangle-height: ${this.height};
117
+ --emw-skeleton-rectangle-border-radius: ${this.borderRadius}px;
118
+ --emw-skeleton-rectangle-margin-bottom: ${this.marginBottom}px;
119
+ --emw-skeleton-rectangle-margin-top: ${this.marginTop}px;
120
+ --emw-skeleton-rectangle-margin-left: ${this.marginLeft}px;
121
+ --emw-skeleton-rectangle-margin-right: ${this.marginRight}px;
122
+ --emw-skeleton-rectangle-background: ${this.color};
123
+ --emw-skeleton-primary-color: ${this.primaryColor};
124
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
125
+ }
126
+ `;
127
+ break;
128
+ case "circle":
129
+ e = `
130
+ :host {
131
+ --emw-skeleton-circle-size: ${this.size};
132
+ --emw-skeleton-circle-background: ${this.color};
133
+ --emw-skeleton-primary-color: ${this.primaryColor};
134
+ --emw-skeleton-secondary-color: ${this.secondaryColor};
135
+ }
136
+ `;
137
+ break;
138
+ default:
139
+ e = "";
140
+ }
141
+ return t(i, { key: "58f7f9acd15f0f96b8b6f47f6bea81d49a3857c5" }, t("style", { key: "c72ac31d1c55fd5d18ec334629db45977a0f6124" }, e), this.handleStructure(this.structure));
142
+ }
143
+ static get watchers() {
144
+ return {
145
+ structure: ["handleStructureChange"]
146
+ };
147
+ }
148
+ };
149
+ a.style = s;
150
+ export {
151
+ a as U
152
+ };