ngx-easy-table-plus 15.7.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.
Files changed (74) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +37 -0
  3. package/esm2022/lib/components/base/base.component.mjs +541 -0
  4. package/esm2022/lib/components/base/base.module.mjs +46 -0
  5. package/esm2022/lib/components/header/header.component.mjs +24 -0
  6. package/esm2022/lib/components/pagination/pagination.component.mjs +68 -0
  7. package/esm2022/lib/components/thead/thead.component.mjs +147 -0
  8. package/esm2022/lib/index.mjs +7 -0
  9. package/esm2022/lib/model/api.mjs +24 -0
  10. package/esm2022/lib/model/columns.mjs +2 -0
  11. package/esm2022/lib/model/config.mjs +12 -0
  12. package/esm2022/lib/model/event.enum.mjs +24 -0
  13. package/esm2022/lib/model/pagination.mjs +2 -0
  14. package/esm2022/lib/pipes/global-search-pipe.mjs +30 -0
  15. package/esm2022/lib/pipes/render-pipe.mjs +18 -0
  16. package/esm2022/lib/pipes/search-pipe.mjs +51 -0
  17. package/esm2022/lib/pipes/sort.pipe.mjs +64 -0
  18. package/esm2022/lib/services/config-service.mjs +51 -0
  19. package/esm2022/lib/services/filters.service.mjs +16 -0
  20. package/esm2022/lib/services/group-rows.service.mjs +19 -0
  21. package/esm2022/lib/services/style.service.mjs +46 -0
  22. package/esm2022/lib/table.module.mjs +19 -0
  23. package/esm2022/ngx-easy-table-plus.mjs +5 -0
  24. package/esm2022/public_api.mjs +9 -0
  25. package/fesm2022/ngx-easy-table-plus.mjs +1142 -0
  26. package/fesm2022/ngx-easy-table-plus.mjs.map +1 -0
  27. package/index.d.ts +6 -0
  28. package/lib/components/base/base.component.d.ts +112 -0
  29. package/lib/components/base/base.component.d.ts.map +1 -0
  30. package/lib/components/base/base.module.d.ts +19 -0
  31. package/lib/components/base/base.module.d.ts.map +1 -0
  32. package/lib/components/header/header.component.d.ts +15 -0
  33. package/lib/components/header/header.component.d.ts.map +1 -0
  34. package/lib/components/pagination/pagination.component.d.ts +32 -0
  35. package/lib/components/pagination/pagination.component.d.ts.map +1 -0
  36. package/lib/components/thead/thead.component.d.ts +52 -0
  37. package/lib/components/thead/thead.component.d.ts.map +1 -0
  38. package/lib/index.d.ts +7 -0
  39. package/lib/index.d.ts.map +1 -0
  40. package/lib/model/api.d.ts +117 -0
  41. package/lib/model/api.d.ts.map +1 -0
  42. package/lib/model/columns.d.ts +19 -0
  43. package/lib/model/columns.d.ts.map +1 -0
  44. package/lib/model/config.d.ts +53 -0
  45. package/lib/model/config.d.ts.map +1 -0
  46. package/lib/model/event.enum.d.ts +21 -0
  47. package/lib/model/event.enum.d.ts.map +1 -0
  48. package/lib/model/pagination.d.ts +6 -0
  49. package/lib/model/pagination.d.ts.map +1 -0
  50. package/lib/pipes/global-search-pipe.d.ts +9 -0
  51. package/lib/pipes/global-search-pipe.d.ts.map +1 -0
  52. package/lib/pipes/render-pipe.d.ts +8 -0
  53. package/lib/pipes/render-pipe.d.ts.map +1 -0
  54. package/lib/pipes/search-pipe.d.ts +15 -0
  55. package/lib/pipes/search-pipe.d.ts.map +1 -0
  56. package/lib/pipes/sort.pipe.d.ts +17 -0
  57. package/lib/pipes/sort.pipe.d.ts.map +1 -0
  58. package/lib/services/config-service.d.ts +9 -0
  59. package/lib/services/config-service.d.ts.map +1 -0
  60. package/lib/services/filters.service.d.ts +7 -0
  61. package/lib/services/filters.service.d.ts.map +1 -0
  62. package/lib/services/group-rows.service.d.ts +7 -0
  63. package/lib/services/group-rows.service.d.ts.map +1 -0
  64. package/lib/services/style.service.d.ts +12 -0
  65. package/lib/services/style.service.d.ts.map +1 -0
  66. package/lib/table.module.d.ts +10 -0
  67. package/lib/table.module.d.ts.map +1 -0
  68. package/ngx-easy-table-plus.d.ts.map +1 -0
  69. package/package.json +44 -0
  70. package/public_api.d.ts +9 -0
  71. package/public_api.d.ts.map +1 -0
  72. package/style.css +514 -0
  73. package/style.css.map +1 -0
  74. package/style.scss +616 -0
package/style.css ADDED
@@ -0,0 +1,514 @@
1
+ @charset "UTF-8";
2
+ /*! Based on Spectre.css v0.4.5 | MIT License | github.com/picturepan2/spectre */
3
+ .ngx-container {
4
+ margin-left: auto;
5
+ margin-right: auto;
6
+ width: 100%;
7
+ }
8
+ .ngx-container--dark {
9
+ background-color: #50596c;
10
+ }
11
+ .ngx-table {
12
+ color: #50596c;
13
+ border-collapse: collapse;
14
+ border-spacing: 0;
15
+ display: table;
16
+ font-family: Montserrat, Verdana, serif;
17
+ font-size: 14px;
18
+ text-align: left;
19
+ width: 100%;
20
+ }
21
+ .ngx-table td {
22
+ border-bottom: 1px solid #e7e9ed;
23
+ padding: 12px 6px;
24
+ }
25
+ .ngx-table th {
26
+ padding: 12px 6px;
27
+ border-bottom: 2px solid #e7e9ed;
28
+ }
29
+ .ngx-table__table-row--selected, .ngx-table__table-col--selected, .ngx-table__table-cell--selected {
30
+ background: #e7e9ed !important;
31
+ }
32
+ .ngx-table__table-no-results {
33
+ text-align: center;
34
+ }
35
+ .ngx-table__table-loader-wrapper {
36
+ display: flex;
37
+ justify-content: center;
38
+ margin-top: 50px;
39
+ }
40
+ .ngx-table__body-loading:hover {
41
+ background: 0 !important;
42
+ }
43
+ .ngx-table__table-loader {
44
+ animation: spin 0.6s linear infinite;
45
+ border: 1px solid #e7e9ed;
46
+ border-radius: 50%;
47
+ border-top-color: #50596c;
48
+ height: 1.8rem;
49
+ width: 1.8rem;
50
+ }
51
+ .ngx-table__table-row-context-menu {
52
+ position: absolute;
53
+ }
54
+ .ngx-table__header-search {
55
+ -webkit-appearance: none;
56
+ -moz-appearance: none;
57
+ background: #fff none;
58
+ border: 0.05rem solid #e7e9ed;
59
+ border-radius: 0.1rem;
60
+ color: #50596c;
61
+ display: block;
62
+ font-size: 0.8rem;
63
+ height: 1.47rem;
64
+ line-height: 1rem;
65
+ max-width: 100%;
66
+ outline: 0;
67
+ padding: 0.15rem 0.3rem;
68
+ position: relative;
69
+ width: 97%;
70
+ }
71
+ .ngx-table__header-cell {
72
+ position: relative;
73
+ }
74
+ .ngx-table__header-cell .pointer {
75
+ cursor: pointer;
76
+ }
77
+ .ngx-table__horizontal-scroll {
78
+ display: block;
79
+ overflow-x: scroll;
80
+ white-space: nowrap;
81
+ }
82
+ .ngx-table__horizontal-scroll::-webkit-scrollbar {
83
+ -webkit-appearance: none;
84
+ width: 3px;
85
+ height: 10px;
86
+ }
87
+ .ngx-table__horizontal-scroll::-webkit-scrollbar-thumb {
88
+ background-color: grey;
89
+ }
90
+ .ngx-table__column-resizer {
91
+ background-color: #e7e9ed;
92
+ cursor: col-resize;
93
+ display: block;
94
+ height: 20px;
95
+ margin-top: 10px;
96
+ position: absolute;
97
+ padding: 0;
98
+ right: 0;
99
+ top: 0;
100
+ width: 2px;
101
+ }
102
+ .ngx-table__table--borderless > tbody > tr > td,
103
+ .ngx-table__table--borderless > thead > tr > th {
104
+ border-bottom: 0 !important;
105
+ }
106
+ .ngx-table__table--hoverable > tbody tr:hover {
107
+ background: #f6f7f9;
108
+ }
109
+ .ngx-table__table--striped > tbody tr:nth-of-type(odd) {
110
+ background: #f6f7f9;
111
+ }
112
+ .ngx-table__table--tiny > tbody > tr > td,
113
+ .ngx-table__table--tiny > thead > tr > th {
114
+ border-bottom: 1px solid #e7e9ed;
115
+ padding: 4px 7px;
116
+ }
117
+ .ngx-table__table--normal > tbody > tr > td,
118
+ .ngx-table__table--normal > thead > tr > th {
119
+ border-bottom: 1px solid #e7e9ed;
120
+ padding: 10px 6px;
121
+ }
122
+ .ngx-table__table--big > tbody > tr > td,
123
+ .ngx-table__table--big > thead > tr > th {
124
+ border-bottom: 1px solid #e7e9ed;
125
+ padding: 12px 8px;
126
+ }
127
+ .ngx-table__table--dark {
128
+ background-color: #50596c;
129
+ color: #f6f7f9;
130
+ }
131
+ .ngx-table__table--dark > tbody tr:hover {
132
+ color: #50596c;
133
+ }
134
+ .ngx-table__table--dark.ngx-table__table--striped > tbody tr:nth-of-type(odd) {
135
+ background: #5f697d;
136
+ }
137
+ .ngx-table__table--dark-pagination ::ng-deep .ngx-pagination .current {
138
+ background: #f6f7f9;
139
+ color: #50596c;
140
+ }
141
+ .ngx-table__table--dark-pagination ::ng-deep pagination-template > ul {
142
+ -webkit-padding-start: 0;
143
+ -webkit-margin-before: 0;
144
+ }
145
+ .ngx-table__table--dark-pagination ::ng-deep pagination-template > ul > li {
146
+ border: 1px solid #e7e9ed;
147
+ background: #50596c;
148
+ }
149
+ .ngx-table__table--dark-pagination ::ng-deep pagination-template > ul > li.current {
150
+ border: 1px solid #50596c;
151
+ }
152
+ .ngx-table__table--dark-pagination ::ng-deep pagination-template > ul > li > a {
153
+ color: #f6f7f9;
154
+ }
155
+ .ngx-table__table--dark-pagination-wrapper {
156
+ background-color: #50596c;
157
+ }
158
+ .ngx-table__table--dark-pagination-range > #rowAmount > div > div {
159
+ color: #e7e9ed;
160
+ border: 1px solid #e7e9ed;
161
+ background-color: #50596c;
162
+ }
163
+ .ngx-table__table--dark-pagination-range > #rowAmount > div > ul {
164
+ color: #e7e9ed;
165
+ background-color: #50596c;
166
+ }
167
+ .ngx-table__table--dark-pagination-range > #rowAmount > div > ul > li {
168
+ color: #e7e9ed;
169
+ background-color: #50596c;
170
+ }
171
+ .ngx-table__header-title {
172
+ display: inline;
173
+ }
174
+ .ngx-menu {
175
+ background: #fff;
176
+ border: 1px solid #e7e9ed;
177
+ list-style: none;
178
+ margin: 0;
179
+ min-width: 60px;
180
+ z-index: 100;
181
+ }
182
+ .ngx-form-icon {
183
+ border-radius: 0.1rem;
184
+ background: #fff;
185
+ height: 0.9rem;
186
+ left: 0;
187
+ top: 0.2rem;
188
+ width: 0.9rem;
189
+ transition: all 0.2s ease;
190
+ border: 0.05rem solid #e7e9ed;
191
+ cursor: pointer;
192
+ display: inline-block;
193
+ position: absolute;
194
+ }
195
+ .ngx-form-checkbox {
196
+ line-height: 1rem;
197
+ margin: 0.2rem 0;
198
+ min-height: 1.2rem;
199
+ padding: 0.2rem 0.4rem 0.4rem 1rem;
200
+ position: relative;
201
+ }
202
+ .ngx-form-checkbox input {
203
+ clip: rect(0, 0, 0, 0);
204
+ height: 1px;
205
+ margin: -1px;
206
+ overflow: hidden;
207
+ position: absolute;
208
+ width: 1px;
209
+ }
210
+ .ngx-form-checkbox input:focus + .ngx-form-icon {
211
+ box-shadow: 0 0 0 0.1rem rgba(63, 134, 202, 0.2);
212
+ border-color: #3f86ca;
213
+ }
214
+ .ngx-form-checkbox input:checked + .ngx-form-icon {
215
+ background: #3f86ca;
216
+ border-color: #3f86ca;
217
+ }
218
+ .ngx-form-checkbox input:active + .ngx-form-icon {
219
+ background: #50596c;
220
+ }
221
+ .ngx-form-checkbox input:checked + .ngx-form-icon::before {
222
+ background-clip: padding-box;
223
+ border: 0.1rem solid #fff;
224
+ border-left-width: 0;
225
+ border-top-width: 0;
226
+ content: "";
227
+ height: 12px;
228
+ left: 50%;
229
+ margin-left: -3px;
230
+ margin-top: -8px;
231
+ position: absolute;
232
+ top: 50%;
233
+ transform: rotate(45deg);
234
+ width: 6px;
235
+ }
236
+ .ngx-icon {
237
+ box-sizing: border-box;
238
+ cursor: pointer;
239
+ display: inline-block;
240
+ font-size: inherit;
241
+ font-style: normal;
242
+ height: 1em;
243
+ position: relative;
244
+ text-indent: -9999px;
245
+ vertical-align: middle;
246
+ width: 1em;
247
+ }
248
+ .ngx-icon::before, .ngx-icon::after {
249
+ content: "";
250
+ display: block;
251
+ left: 50%;
252
+ position: absolute;
253
+ top: 50%;
254
+ transform: translate(-50%, -50%);
255
+ }
256
+ .ngx-icon-arrow-down::before, .ngx-icon-arrow-right::before, .ngx-icon-arrow-up::before {
257
+ border: 0.1rem solid #50596c;
258
+ border-bottom: 0;
259
+ border-right: 0;
260
+ height: 0.65em;
261
+ width: 0.65em;
262
+ }
263
+ .ngx-icon-arrow-down::before {
264
+ transform: translate(-50%, -75%) rotate(225deg);
265
+ }
266
+ .ngx-icon-arrow-right::before {
267
+ transform: translate(-75%, -50%) rotate(135deg);
268
+ }
269
+ .ngx-icon-arrow-up::before {
270
+ transform: translate(-50%, -25%) rotate(45deg);
271
+ }
272
+ .ngx-icon-menu::before {
273
+ background: #50596c;
274
+ box-shadow: 0 -0.35em, 0 0.35em;
275
+ content: "";
276
+ height: 0.1rem;
277
+ width: 100%;
278
+ }
279
+ .ngx-icon-pin {
280
+ border-radius: 50%;
281
+ border: 4px solid #50596c;
282
+ width: 11px;
283
+ height: 11px;
284
+ }
285
+ .ngx-icon-more::before {
286
+ background: #50596c;
287
+ border-radius: 50%;
288
+ box-shadow: 0 -0.4em, 0 0.4em;
289
+ height: 3px;
290
+ width: 3px;
291
+ }
292
+ .ngx-dropdown {
293
+ display: inline;
294
+ position: relative;
295
+ float: right;
296
+ }
297
+ .ngx-dropdown .ngx-menu {
298
+ position: absolute;
299
+ top: 100%;
300
+ right: 0;
301
+ left: auto;
302
+ }
303
+ .ngx-dropdown a {
304
+ color: #50596c;
305
+ }
306
+ .ngx-btn-group {
307
+ display: inline;
308
+ }
309
+ .ngx-draggable-row {
310
+ cursor: move;
311
+ }
312
+
313
+ @keyframes spin {
314
+ 0% {
315
+ transform: rotate(0deg);
316
+ }
317
+ 100% {
318
+ transform: rotate(360deg);
319
+ }
320
+ }
321
+ .cdk-drag-preview {
322
+ box-sizing: border-box;
323
+ border-radius: 1px;
324
+ box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
325
+ background-color: white;
326
+ padding-top: 9px;
327
+ padding-left: 4px;
328
+ display: table;
329
+ table-layout: fixed;
330
+ }
331
+
332
+ .cdk-drag-placeholder {
333
+ opacity: 0;
334
+ }
335
+
336
+ .cdk-drag-animating {
337
+ transition: transform 150ms cubic-bezier(0, 0, 0.2, 1);
338
+ }
339
+
340
+ .ngx-draggable-row-area.cdk-drop-list-dragging .ngx-draggable-row:not(.cdk-drag-placeholder) {
341
+ transition: transform 150ms cubic-bezier(0, 0, 0.2, 1);
342
+ }
343
+
344
+ .ngx-table__header-cell--draggable {
345
+ cursor: move;
346
+ background-color: white;
347
+ }
348
+
349
+ .ngx-table__header--draggable.cdk-drop-list-dragging .ngx-table__header-cell--draggable:not(.cdk-drag-placeholder) {
350
+ transition: transform 150ms cubic-bezier(0, 0, 0.2, 1);
351
+ }
352
+
353
+ .ngx-pagination {
354
+ font-family: Montserrat, Verdana, serif;
355
+ display: inline-block;
356
+ margin-left: 0;
357
+ margin-bottom: 1rem;
358
+ -webkit-padding-start: 0;
359
+ -webkit-margin-before: 0;
360
+ }
361
+
362
+ .ngx-pagination::before,
363
+ .ngx-pagination::after {
364
+ content: " ";
365
+ display: table;
366
+ }
367
+
368
+ .ngx-pagination::after {
369
+ clear: both;
370
+ }
371
+
372
+ .ngx-pagination li {
373
+ -moz-user-select: none;
374
+ -webkit-user-select: none;
375
+ -ms-user-select: none;
376
+ margin-right: 0.0625rem;
377
+ border-radius: 0;
378
+ border: 1px solid #e7e9ed;
379
+ }
380
+
381
+ .ngx-pagination li.current {
382
+ border: 1px solid #50596c;
383
+ }
384
+
385
+ .ngx-pagination li {
386
+ display: inline-block;
387
+ }
388
+
389
+ .ngx-pagination a,
390
+ .ngx-pagination button {
391
+ color: #50596c;
392
+ display: block;
393
+ padding: 0.1875rem 0.625rem;
394
+ border-radius: 0;
395
+ }
396
+
397
+ .ngx-pagination a:hover,
398
+ .ngx-pagination button:hover {
399
+ background: #e6e6e6;
400
+ }
401
+
402
+ .ngx-pagination .current {
403
+ padding: 0.1875rem 0.625rem;
404
+ background: #3f86ca;
405
+ color: #fefefe;
406
+ cursor: default;
407
+ }
408
+
409
+ .ngx-pagination .disabled {
410
+ padding: 0.1875rem 0.625rem;
411
+ color: #cacaca;
412
+ cursor: default;
413
+ }
414
+
415
+ .ngx-pagination .disabled:hover {
416
+ background: transparent;
417
+ }
418
+
419
+ .ngx-pagination a,
420
+ .ngx-pagination button {
421
+ cursor: pointer;
422
+ }
423
+
424
+ .ngx-pagination .pagination-previous a::before,
425
+ .ngx-pagination .pagination-previous.disabled::before {
426
+ content: "«";
427
+ display: inline-block;
428
+ margin-right: 0.5rem;
429
+ }
430
+
431
+ .ngx-pagination .pagination-next a::after,
432
+ .ngx-pagination .pagination-next.disabled::after {
433
+ content: "»";
434
+ display: inline-block;
435
+ margin-left: 0.5rem;
436
+ }
437
+
438
+ .ngx-pagination .show-for-sr {
439
+ position: absolute !important;
440
+ width: 1px;
441
+ height: 1px;
442
+ overflow: hidden;
443
+ clip: rect(0, 0, 0, 0);
444
+ }
445
+
446
+ .ngx-pagination .small-screen {
447
+ display: none;
448
+ }
449
+
450
+ .ngx-pagination-wrapper {
451
+ margin-top: 8px;
452
+ }
453
+
454
+ .ngx-pagination-range {
455
+ display: inline-block;
456
+ float: right;
457
+ }
458
+
459
+ .ngx-pagination-steps {
460
+ display: inline-block;
461
+ }
462
+
463
+ .ngx-pagination-range-dropdown {
464
+ margin-top: 0;
465
+ }
466
+
467
+ .ngx-pagination-range-dropdown-button-item {
468
+ cursor: pointer;
469
+ color: #50596c;
470
+ padding: 0.4rem;
471
+ }
472
+
473
+ .ngx-pagination-range--selected {
474
+ background-color: #f6f7f9;
475
+ }
476
+
477
+ .ngx-pagination-range-dropdown-button {
478
+ color: #50596c;
479
+ border: 1px solid #e7e9ed;
480
+ cursor: pointer;
481
+ padding: 4px;
482
+ }
483
+
484
+ .pinned-left {
485
+ position: sticky;
486
+ z-index: 1;
487
+ background-color: white;
488
+ box-shadow: 2px 0 0 rgba(128, 128, 128, 0.175);
489
+ }
490
+
491
+ @media screen and (max-width: 601px) {
492
+ .ngx-pagination.responsive .small-screen {
493
+ display: inline-block;
494
+ padding: 0.1875rem 0.625rem;
495
+ border-radius: 0;
496
+ }
497
+ .ngx-pagination.responsive li:not(.small-screen):not(.pagination-previous):not(.pagination-next) {
498
+ display: none;
499
+ }
500
+ }
501
+ .ngx-infinite-scroll-viewport {
502
+ display: block;
503
+ height: 250px;
504
+ overflow: auto;
505
+ }
506
+
507
+ .ngx-infinite-scroll-viewport tr,
508
+ .ngx-infinite-scroll-viewport-thead {
509
+ display: table;
510
+ width: 100%;
511
+ table-layout: fixed;
512
+ }
513
+
514
+ /*# sourceMappingURL=style.css.map */
package/style.css.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../projects/ngx-easy-table/assets/style.scss"],"names":[],"mappings":";AAMA;AAEE;EACE;EACA;EACA;;AAGF;EACE,kBAZG;;AAeL;EACE,OAdY;EAeZ;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EAGE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA,kBAzDU;EA0DV;EACA;;AAYF;EACE;;AASF;EACE;EACA;EACA;EACA;EACA;EACA,OAvFU;EAwFV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAIJ;EACE,kBAjIC;EAkID;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;AAAA;EAEE;;AAIJ;EACE,YApJS;;AAuJX;EACE,YAxJS;;AA4JT;AAAA;EAEE;EACA;;AAKF;AAAA;EAEE;EACA;;AAKF;AAAA;EAEE;EACA;;AAIJ;EACE,kBAlLC;EAmLD,OArLS;;AAuLT;EACE,OAtLD;;AAyLD;EACE;;AAIA;EACE,YAjMK;EAkML,OAhMH;;AAmMC;EACE;EACA;;AAGF;EACE;EACA,YA1MH;;AA6MC;EACE;;AAGF;EACE,OApNK;;AAuNP;EACE,kBAtNH;;AA0NG;EACE,OA9NL;EA+NK;EACA,kBA7NL;;AAgOG;EACE,OApOL;EAqOK,kBAlOL;;AAqOG;EACE,OAzOL;EA0OK,kBAvOL;;AA6OH;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA,cAzRD;;AA4RD;EACE,YA7RD;EA8RC,cA9RD;;AAiSD;EACE,YAnSD;;AAuSC;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEE;EACA;EACA;EACA;EACA;EACA;;AAIJ;EAGE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE,YAxWG;EAyWH;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE,YAvXG;EAwXH;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE,OAzYU;;AA6Yd;EACE;;AAGF;EACE;;;AAIJ;EACE;IACE;;EAGF;IACE;;;AAIJ;EACE;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EAEE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE,OA1eK;EA2eL;EACA;EACA;;;AAGF;AAAA;EAEE;;;AAGF;EACE;EACA,YAtfK;EAufL;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;AAAA;EAEE;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA,OAtjBc;EAujBd;;;AAGF;EACE,kBA/jBa;;;AAkkBf;EACE,OA/jBc;EAgkBd;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;IACE;IACA;IACA;;EAEF;IACE;;;AAIJ;EACE;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA","file":"style.css"}