@everymatrix/lottery-ticket 1.31.2 → 1.32.4

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.
Files changed (54) hide show
  1. package/LICENSE +21 -0
  2. package/package.json +4 -3
  3. package/dist/cjs/index-e62c9a3f.js +0 -1283
  4. package/dist/cjs/index.cjs.js +0 -2
  5. package/dist/cjs/loader.cjs.js +0 -21
  6. package/dist/cjs/lottery-bullet_3.cjs.entry.js +0 -504
  7. package/dist/cjs/lottery-ticket.cjs.js +0 -19
  8. package/dist/collection/collection-manifest.json +0 -25
  9. package/dist/collection/components/lottery-ticket/lottery-ticket.css +0 -307
  10. package/dist/collection/components/lottery-ticket/lottery-ticket.js +0 -494
  11. package/dist/collection/components/lottery-ticket/lottery-ticket.types.js +0 -1
  12. package/dist/collection/index.js +0 -1
  13. package/dist/collection/utils/locale.utils.js +0 -58
  14. package/dist/collection/utils/utils.js +0 -0
  15. package/dist/components/index.d.ts +0 -26
  16. package/dist/components/index.js +0 -1
  17. package/dist/components/lottery-bullet.js +0 -6
  18. package/dist/components/lottery-bullet2.js +0 -91
  19. package/dist/components/lottery-grid.js +0 -6
  20. package/dist/components/lottery-grid2.js +0 -245
  21. package/dist/components/lottery-ticket.d.ts +0 -11
  22. package/dist/components/lottery-ticket.js +0 -276
  23. package/dist/esm/index-a0f57440.js +0 -1257
  24. package/dist/esm/index.js +0 -1
  25. package/dist/esm/loader.js +0 -17
  26. package/dist/esm/lottery-bullet_3.entry.js +0 -498
  27. package/dist/esm/lottery-ticket.js +0 -17
  28. package/dist/esm/polyfills/core-js.js +0 -11
  29. package/dist/esm/polyfills/css-shim.js +0 -1
  30. package/dist/esm/polyfills/dom.js +0 -79
  31. package/dist/esm/polyfills/es5-html-element.js +0 -1
  32. package/dist/esm/polyfills/index.js +0 -34
  33. package/dist/esm/polyfills/system.js +0 -6
  34. package/dist/index.cjs.js +0 -1
  35. package/dist/index.js +0 -1
  36. package/dist/lottery-ticket/index.esm.js +0 -0
  37. package/dist/lottery-ticket/lottery-ticket.esm.js +0 -1
  38. package/dist/lottery-ticket/p-5aa3d0a5.entry.js +0 -1
  39. package/dist/lottery-ticket/p-9cd1415d.js +0 -1
  40. package/dist/stencil.config.js +0 -22
  41. package/dist/types/Users/dragos.bodea/Documents/everymatrix-prjs/emfe-widgets/widgets-stencil/packages/lottery-ticket/.stencil/packages/lottery-ticket/stencil.config.d.ts +0 -2
  42. package/dist/types/components/lottery-ticket/lottery-ticket.d.ts +0 -82
  43. package/dist/types/components/lottery-ticket/lottery-ticket.types.d.ts +0 -49
  44. package/dist/types/components.d.ts +0 -125
  45. package/dist/types/index.d.ts +0 -1
  46. package/dist/types/stencil-public-runtime.d.ts +0 -1565
  47. package/dist/types/utils/locale.utils.d.ts +0 -1
  48. package/dist/types/utils/utils.d.ts +0 -0
  49. package/loader/cdn.js +0 -3
  50. package/loader/index.cjs.js +0 -3
  51. package/loader/index.d.ts +0 -12
  52. package/loader/index.es2017.js +0 -3
  53. package/loader/index.js +0 -4
  54. package/loader/package.json +0 -10
@@ -1,307 +0,0 @@
1
- @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");
2
- :host {
3
- display: block;
4
- font-family: "Roboto", sans-serif;
5
- }
6
-
7
- .TicketTitle {
8
- font-size: 16px;
9
- font-weight: bold;
10
- }
11
-
12
- .ButtonContainer {
13
- display: flex;
14
- justify-content: flex-end;
15
- }
16
-
17
- .Toggle {
18
- cursor: pointer;
19
- margin-top: 20px;
20
- display: inline-block;
21
- }
22
-
23
- .ToggleSwitch {
24
- display: inline-block;
25
- background: #707070;
26
- border-radius: 16px;
27
- width: 58px;
28
- height: 24px;
29
- position: relative;
30
- vertical-align: middle;
31
- transition: background 0.25s;
32
- }
33
- .ToggleSwitch:before, .ToggleSwitch:after {
34
- content: "";
35
- }
36
- .ToggleSwitch:before {
37
- display: block;
38
- background: linear-gradient(to bottom, #fff 0%, #F1F1F1 100%);
39
- border-radius: 50%;
40
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
41
- width: 16px;
42
- height: 16px;
43
- position: absolute;
44
- top: 4px;
45
- left: 4px;
46
- transition: left 0.25s;
47
- }
48
-
49
- .Toggle:hover .ToggleSwitch:before {
50
- background: linear-gradient(to bottom, #fff 0%, #fff 100%);
51
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
52
- }
53
-
54
- .ToggleCheckbox:checked + .ToggleSwitch {
55
- background: #00ABA4;
56
- }
57
-
58
- .ToggleCheckbox:checked + .ToggleSwitch:before {
59
- left: 38px;
60
- }
61
-
62
- .ToggleCheckbox {
63
- position: absolute;
64
- visibility: hidden;
65
- }
66
-
67
- .Label {
68
- margin-right: 5px;
69
- position: relative;
70
- top: 2px;
71
- font-size: 14px;
72
- font-weight: lighter;
73
- color: #000;
74
- }
75
-
76
- input[type=number] {
77
- -webkit-appearance: textfield;
78
- -moz-appearance: textfield;
79
- appearance: textfield;
80
- }
81
-
82
- input[type=number]::-webkit-inner-spin-button,
83
- input[type=number]::-webkit-outer-spin-button {
84
- -webkit-appearance: none;
85
- }
86
-
87
- .NumberInput,
88
- .WagerInput {
89
- margin-top: 10px;
90
- display: inline-flex;
91
- align-items: center;
92
- }
93
-
94
- .NumberInput,
95
- .NumberInput * {
96
- box-sizing: border-box;
97
- }
98
-
99
- .NumberInput button {
100
- cursor: pointer;
101
- outline: none;
102
- -webkit-appearance: none;
103
- border: none;
104
- align-items: center;
105
- justify-content: center;
106
- height: 20px;
107
- position: relative;
108
- }
109
-
110
- .NumberInput button:after {
111
- display: inline-block;
112
- position: absolute;
113
- transform: translate(-50%, -50%) rotate(180deg);
114
- align-items: center;
115
- text-align: center;
116
- }
117
-
118
- .NumberInput button.Plus:after {
119
- transform: translate(-50%, -50%) rotate(0deg);
120
- width: 30px;
121
- display: inline-flex;
122
- align-items: center;
123
- text-align: center;
124
- }
125
-
126
- .NumberInput input[type=number],
127
- .WagerInput input[type=number] {
128
- max-width: 50px;
129
- display: inline-flex;
130
- align-items: center;
131
- padding: 4px 10px;
132
- text-align: center;
133
- }
134
- .NumberInput input[type=number] .WagerInputTitle,
135
- .WagerInput input[type=number] .WagerInputTitle {
136
- font-size: 14px;
137
- color: #000;
138
- padding: 10px;
139
- }
140
-
141
- .InputDefault {
142
- background-color: #F1F1F1;
143
- border-radius: 4px;
144
- padding: 5px;
145
- border: solid 1px #D4D4D4;
146
- color: #707070;
147
- }
148
-
149
- .AutoButton {
150
- cursor: pointer;
151
- display: inline-block;
152
- border-radius: 4px;
153
- padding: 8px 20px;
154
- width: max-content;
155
- margin: 5px 0;
156
- border: 1px solid #00958f;
157
- background: #FFF;
158
- color: #000;
159
- font-size: 12px;
160
- transition: all 0.2s linear;
161
- text-transform: uppercase;
162
- text-align: center;
163
- letter-spacing: 0;
164
- }
165
- .AutoButton:active {
166
- background: #00958f;
167
- color: #FFF;
168
- }
169
-
170
- .ResetButton {
171
- cursor: pointer;
172
- display: inline-block;
173
- border-radius: 4px;
174
- padding: 8px 20px;
175
- width: max-content;
176
- margin: 5px 0;
177
- color: #000;
178
- font-size: 12px;
179
- transition: all 0.2s linear;
180
- text-transform: uppercase;
181
- text-align: center;
182
- letter-spacing: 0;
183
- background: #FF3D00;
184
- border: 1px solid #FF3D00;
185
- color: #FFF;
186
- }
187
- .ResetButton:hover {
188
- background: #FF6536;
189
- border: 1px solid #FF3D00;
190
- }
191
-
192
- .TicketGridBullets {
193
- background: #f1f1f1;
194
- border-radius: 4px;
195
- padding: 20px;
196
- margin-top: 5px;
197
- }
198
- .TicketGridBullets .TicketGridTitle {
199
- margin-top: 0px;
200
- }
201
-
202
- .Minus {
203
- border-radius: 4px;
204
- width: 30px;
205
- height: 24px !important;
206
- margin-right: 10px;
207
- color: #FFF;
208
- background: #009993;
209
- }
210
-
211
- .Plus {
212
- border-radius: 4px;
213
- width: 30px;
214
- height: 24px !important;
215
- margin-left: 10px;
216
- color: #FFF;
217
- background: #009993;
218
- }
219
-
220
- .SelectWrapper {
221
- width: auto;
222
- padding: 5px;
223
- margin: 0 auto;
224
- border: 1px solid #ccc;
225
- border-radius: 5px;
226
- position: relative;
227
- }
228
-
229
- .SelectButton, .SelectOptions li {
230
- display: flex;
231
- align-items: center;
232
- cursor: pointer;
233
- }
234
-
235
- .SelectButton {
236
- display: flex;
237
- padding: 0 5px;
238
- border-radius: 7px;
239
- align-items: center;
240
- justify-content: space-between;
241
- font-size: 14px;
242
- }
243
- .SelectButton span:first-child {
244
- padding-right: 10px;
245
- }
246
-
247
- .SelectExpand {
248
- transition: transform 0.3s linear;
249
- font-size: 12px;
250
- }
251
-
252
- .SelectActive .SelectExpand {
253
- transform: rotate(180deg);
254
- }
255
-
256
- .SelectContent {
257
- display: none;
258
- padding: 5px;
259
- border-radius: 7px;
260
- }
261
-
262
- .SelectWrapper.SelectActive .SelectContent {
263
- width: 100%;
264
- display: block;
265
- position: absolute;
266
- left: 0;
267
- top: 32px;
268
- padding: 0;
269
- border: 1px solid #ccc;
270
- overflow: hidden;
271
- background: #fff;
272
- }
273
-
274
- .SelectContent .SelectOptions {
275
- max-height: 100px;
276
- margin: 0;
277
- overflow-y: auto;
278
- padding: 0;
279
- }
280
- .SelectContent .SelectOptions .SelectedValue {
281
- background-color: #009993;
282
- color: #fff;
283
- }
284
-
285
- .SelectOptions::-webkit-scrollbar {
286
- width: 7px;
287
- }
288
-
289
- .SelectOptions::-webkit-scrollbar-track {
290
- background: #f1f1f1;
291
- border-radius: 25px;
292
- }
293
-
294
- .SelectOptions::-webkit-scrollbar-thumb {
295
- background: #ccc;
296
- border-radius: 25px;
297
- }
298
-
299
- .SelectOptions li {
300
- height: 20px;
301
- padding: 0 13px;
302
- font-size: 14px;
303
- }
304
-
305
- .SelectOptions li:hover {
306
- background: #f2f2f2;
307
- }