@xplortech/apollo-core 0.0.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 (49) hide show
  1. package/README.md +1 -0
  2. package/build/style.css +1129 -0
  3. package/dist/apollo-core/apollo-core.esm.js +1 -0
  4. package/dist/apollo-core/index.esm.js +0 -0
  5. package/dist/apollo-core/p-1c829417.js +1 -0
  6. package/dist/apollo-core/p-64ea0ce6.entry.js +1 -0
  7. package/dist/apollo-core/p-b76559ae.entry.js +1 -0
  8. package/dist/cjs/apollo-core.cjs.js +19 -0
  9. package/dist/cjs/index-3ceb30c2.js +980 -0
  10. package/dist/cjs/index.cjs.js +2 -0
  11. package/dist/cjs/loader.cjs.js +21 -0
  12. package/dist/cjs/xpl-pagination.cjs.entry.js +16 -0
  13. package/dist/cjs/xpl-table.cjs.entry.js +54 -0
  14. package/dist/collection/collection-manifest.json +13 -0
  15. package/dist/collection/components/xpl-pagination/xpl-pagination.js +9 -0
  16. package/dist/collection/components/xpl-table/xpl-table.js +157 -0
  17. package/dist/custom-elements/index.d.ts +51 -0
  18. package/dist/custom-elements/index.js +78 -0
  19. package/dist/esm/apollo-core.js +17 -0
  20. package/dist/esm/index-52844266.js +953 -0
  21. package/dist/esm/index.js +1 -0
  22. package/dist/esm/loader.js +17 -0
  23. package/dist/esm/polyfills/core-js.js +11 -0
  24. package/dist/esm/polyfills/css-shim.js +1 -0
  25. package/dist/esm/polyfills/dom.js +79 -0
  26. package/dist/esm/polyfills/es5-html-element.js +1 -0
  27. package/dist/esm/polyfills/index.js +34 -0
  28. package/dist/esm/polyfills/system.js +6 -0
  29. package/dist/esm/xpl-pagination.entry.js +12 -0
  30. package/dist/esm/xpl-table.entry.js +50 -0
  31. package/dist/index.cjs.js +1 -0
  32. package/dist/index.js +1 -0
  33. package/dist/loader/cdn.js +3 -0
  34. package/dist/loader/index.cjs.js +3 -0
  35. package/dist/loader/index.d.ts +13 -0
  36. package/dist/loader/index.es2017.js +3 -0
  37. package/dist/loader/index.js +4 -0
  38. package/dist/loader/package.json +10 -0
  39. package/dist/types/.stencil/xpl-pagination/xpl-pagination.d.ts +3 -0
  40. package/dist/types/.stencil/xpl-table/xpl-table.d.ts +16 -0
  41. package/dist/types/components.d.ts +61 -0
  42. package/dist/types/stencil-public-runtime.d.ts +1562 -0
  43. package/loader/cdn.js +3 -0
  44. package/loader/index.cjs.js +3 -0
  45. package/loader/index.d.ts +13 -0
  46. package/loader/index.es2017.js +3 -0
  47. package/loader/index.js +4 -0
  48. package/loader/package.json +10 -0
  49. package/package.json +56 -0
@@ -0,0 +1,1129 @@
1
+ /*! tailwindcss v2.1.4 | MIT License | https://tailwindcss.com */
2
+
3
+ /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
4
+
5
+ /*
6
+ Document
7
+ ========
8
+ */
9
+
10
+ /**
11
+ Use a better box model (opinionated).
12
+ */
13
+
14
+ [class^="xpl-"],
15
+ [class^="xpl-"] *,
16
+ [class^="xpl-"]::before,
17
+ [class^="xpl-"] *::before,
18
+ [class^="xpl-"]::after,
19
+ [class^="xpl-"] *::after {
20
+ box-sizing: border-box;
21
+ }
22
+
23
+ /**
24
+ Use a more readable tab size (opinionated).
25
+ */
26
+
27
+ [class^="xpl-"] {
28
+ -moz-tab-size: 4;
29
+ -o-tab-size: 4;
30
+ tab-size: 4;
31
+ }
32
+
33
+ /**
34
+ 1. Correct the line height in all browsers.
35
+ 2. Prevent adjustments of font size after orientation changes in iOS.
36
+ */
37
+
38
+ [class^="xpl-"] {
39
+ line-height: 1.15; /* 1 */
40
+ -webkit-text-size-adjust: 100%; /* 2 */
41
+ }
42
+
43
+ /*
44
+ Sections
45
+ ========
46
+ */
47
+
48
+ /**
49
+ Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
50
+ */
51
+
52
+ [class^="xpl-"],
53
+ [class^="xpl-"] * {
54
+ font-family: apple-system, system-ui, "Segoe UI", Arial, Helvetica, Roboto,
55
+ sans-serif;
56
+ }
57
+
58
+ /*
59
+ Grouping content
60
+ ================
61
+ */
62
+
63
+ /**
64
+ 1. Add the correct height in Firefox.
65
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
66
+ */
67
+
68
+ [class^="xpl-"] hr {
69
+ height: 0; /* 1 */
70
+ color: inherit; /* 2 */
71
+ }
72
+
73
+ /*
74
+ Text-level semantics
75
+ ====================
76
+ */
77
+
78
+ /**
79
+ Add the correct text decoration in Chrome, Edge, and Safari.
80
+ */
81
+
82
+ [class^="xpl-"] abbr[title] {
83
+ -webkit-text-decoration: underline dotted;
84
+ text-decoration: underline dotted;
85
+ }
86
+
87
+ /**
88
+ Add the correct font weight in Edge and Safari.
89
+ */
90
+
91
+ [class^="xpl-"] b,
92
+ [class^="xpl-"] strong {
93
+ font-weight: bolder;
94
+ }
95
+
96
+ /**
97
+ 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
98
+ 2. Correct the odd 'em' font sizing in all browsers.
99
+ */
100
+
101
+ [class^="xpl-"] code,
102
+ [class^="xpl-"] kbd,
103
+ [class^="xpl-"] samp,
104
+ [class^="xpl-"] pre {
105
+ font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo,
106
+ monospace; /* 1 */
107
+ font-size: 1em; /* 2 */
108
+ }
109
+
110
+ /**
111
+ Add the correct font size in all browsers.
112
+ */
113
+
114
+ [class^="xpl-"] small {
115
+ font-size: 80%;
116
+ }
117
+
118
+ /**
119
+ Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
120
+ */
121
+
122
+ [class^="xpl-"] sub,
123
+ [class^="xpl-"] sup {
124
+ font-size: 75%;
125
+ line-height: 0;
126
+ position: relative;
127
+ vertical-align: baseline;
128
+ }
129
+
130
+ [class^="xpl-"] sub {
131
+ bottom: -0.25em;
132
+ }
133
+
134
+ [class^="xpl-"] sup {
135
+ top: -0.5em;
136
+ }
137
+
138
+ /*
139
+ Tabular data
140
+ ============
141
+ */
142
+
143
+ /**
144
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
145
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
146
+ */
147
+
148
+ [class^="xpl-"] table,
149
+ table[class^="xpl-"] {
150
+ text-indent: 0; /* 1 */
151
+ border-color: inherit; /* 2 */
152
+ }
153
+
154
+ /*
155
+ Forms
156
+ =====
157
+ */
158
+
159
+ /**
160
+ 1. Change the font styles in all browsers.
161
+ 2. Remove the margin in Firefox and Safari.
162
+ */
163
+
164
+ [class^="xpl-"] button,
165
+ button[class^="xpl-"],
166
+ [class^="xpl-"] input,
167
+ input[class^="xpl-"],
168
+ [class^="xpl-"] optgroup,
169
+ optgroup[class^="xpl-"],
170
+ [class^="xpl-"] select,
171
+ select[class^="xpl-"] [class^="xpl-"] textarea,
172
+ textarea[class^="xpl-"] {
173
+ font-family: inherit; /* 1 */
174
+ font-size: 100%; /* 1 */
175
+ line-height: 1.15; /* 1 */
176
+ margin: 0; /* 2 */
177
+ }
178
+
179
+ /**
180
+ Remove the inheritance of text transform in Edge and Firefox.
181
+ 1. Remove the inheritance of text transform in Firefox.
182
+ */
183
+
184
+ [class^="xpl-"] button,
185
+ button[class^="xpl-"],
186
+ [class^="xpl-"] select,
187
+ select[class^="xpl-"] {
188
+ /* 1 */
189
+ text-transform: none;
190
+ }
191
+
192
+ /**
193
+ Correct the inability to style clickable types in iOS and Safari.
194
+ */
195
+
196
+ [class^="xpl-"] button,
197
+ button[class^="xpl-"] [class^="xpl-"] [type="button"],
198
+ [type="button"][class^="xpl-"] {
199
+ -webkit-appearance: button;
200
+ }
201
+
202
+ /**
203
+ Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
204
+ */
205
+
206
+ [class^="xpl-"] legend {
207
+ padding: 0;
208
+ }
209
+
210
+ /**
211
+ Add the correct vertical alignment in Chrome and Firefox.
212
+ */
213
+
214
+ [class^="xpl-"] progress {
215
+ vertical-align: baseline;
216
+ }
217
+
218
+ /*
219
+ Interactive
220
+ ===========
221
+ */
222
+
223
+ /*
224
+ Add the correct display in Chrome and Safari.
225
+ */
226
+
227
+ [class^="xpl-"] summary {
228
+ display: list-item;
229
+ }
230
+
231
+ /**
232
+ * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
233
+ * A thin layer on top of normalize.css that provides a starting point more
234
+ * suitable for web applications.
235
+ */
236
+
237
+ /**
238
+ * Removes the default spacing and border for appropriate elements.
239
+ */
240
+
241
+ [class^="xpl-"] blockquote,
242
+ [class^="xpl-"] dl,
243
+ [class^="xpl-"] dd,
244
+ [class^="xpl-"] h1,
245
+ [class^="xpl-"] h2,
246
+ [class^="xpl-"] h3,
247
+ [class^="xpl-"] h4,
248
+ [class^="xpl-"] h5,
249
+ [class^="xpl-"] h6,
250
+ [class^="xpl-"] hr,
251
+ [class^="xpl-"] figure,
252
+ [class^="xpl-"] p,
253
+ [class^="xpl-"] pre {
254
+ margin: 0;
255
+ }
256
+
257
+ [class^="xpl-"] button,
258
+ button[class^="xpl-"] {
259
+ background-color: transparent;
260
+ background-image: none;
261
+ }
262
+
263
+ /**
264
+ * Work around a Firefox/IE bug where the transparent `button` background
265
+ * results in a loss of the default `button` focus styles.
266
+ */
267
+
268
+ [class^="xpl-"] button:focus,
269
+ button[class^="xpl-"]:focus {
270
+ outline: 1px dotted;
271
+ outline: 5px auto -webkit-focus-ring-color;
272
+ }
273
+
274
+ [class^="xpl-"] fieldset {
275
+ margin: 0;
276
+ padding: 0;
277
+ }
278
+
279
+ [class^="xpl-"] ol,
280
+ ol[class^="xpl-"],
281
+ [class^="xpl-"] ul,
282
+ ul[class^="xpl-"] {
283
+ list-style: none;
284
+ margin: 0;
285
+ padding: 0;
286
+ }
287
+
288
+ /**
289
+ * Tailwind custom reset styles
290
+ */
291
+
292
+ /**
293
+ * 1. Use the user's configured `sans` font-family (with Tailwind's default
294
+ * sans-serif font stack as a fallback) as a sane default.
295
+ * 2. Use Tailwind's default "normal" line-height so the user isn't forced
296
+ * to override it to ensure consistency even when using the default theme.
297
+ */
298
+
299
+ [class^="xpl-"],
300
+ [class^="xpl-"] * {
301
+ font-family: apple-system, system-ui, "Segoe UI", Arial, Helvetica, Roboto,
302
+ sans-serif; /* 1 */
303
+ line-height: 1.5; /* 2 */
304
+ }
305
+
306
+ /**
307
+ * 1. Prevent padding and border from affecting element width.
308
+ *
309
+ * We used to set this in the html element and inherit from
310
+ * the parent element for everything else. This caused issues
311
+ * in shadow-dom-enhanced elements like <details> where the content
312
+ * is wrapped by a div with box-sizing set to `content-box`.
313
+ *
314
+ * https://github.com/mozdevs/cssremedy/issues/4
315
+ *
316
+ *
317
+ * 2. Allow adding a border to an element by just adding a border-width.
318
+ *
319
+ * By default, the way the browser specifies that an element should have no
320
+ * border is by setting it's border-style to `none` in the user-agent
321
+ * stylesheet.
322
+ *
323
+ * In order to easily add borders to elements by just setting the `border-width`
324
+ * property, we change the default border-style for all elements to `solid`, and
325
+ * use border-width to hide them instead. This way our `border` utilities only
326
+ * need to set the `border-width` property instead of the entire `border`
327
+ * shorthand, making our border utilities much more straightforward to compose.
328
+ *
329
+ * https://github.com/tailwindcss/tailwindcss/pull/116
330
+ */
331
+
332
+ [class^="xpl-"],
333
+ [class^="xpl-"] *,
334
+ [class^="xpl-"]::before,
335
+ [class^="xpl-"] *::before,
336
+ [class^="xpl-"]::after,
337
+ [class^="xpl-"] *::after {
338
+ box-sizing: border-box; /* 1 */
339
+ border-width: 0; /* 2 */
340
+ border-style: solid; /* 2 */
341
+ border-color: #e5e7eb; /* 2 */
342
+ }
343
+
344
+ /*
345
+ * Ensure horizontal rules are visible by default
346
+ */
347
+
348
+ [class^="xpl-"] hr {
349
+ border-top-width: 1px;
350
+ }
351
+
352
+ /**
353
+ * Undo the `border-style: none` reset that Normalize applies to images so that
354
+ * our `border-{width}` utilities have the expected effect.
355
+ *
356
+ * The Normalize reset is unnecessary for us since we default the border-width
357
+ * to 0 on all elements.
358
+ *
359
+ * https://github.com/tailwindcss/tailwindcss/issues/362
360
+ */
361
+
362
+ [class^="xpl-"] img {
363
+ border-style: solid;
364
+ }
365
+
366
+ [class^="xpl-"] textarea {
367
+ resize: vertical;
368
+ }
369
+
370
+ [class^="xpl-"] input::-moz-placeholder,
371
+ input[class^="xpl-"]::-moz-placeholder,
372
+ [class^="xpl-"] textarea::-moz-placeholder,
373
+ textarea[class^="xpl-"]::-moz-placeholder {
374
+ opacity: 1;
375
+ color: #9ca3af;
376
+ }
377
+
378
+ [class^="xpl-"] input:-ms-input-placeholder,
379
+ input[class^="xpl-"]:-ms-input-placeholder,
380
+ [class^="xpl-"] textarea:-ms-input-placeholder,
381
+ textarea[class^="xpl-"]:-ms-input-placeholder {
382
+ opacity: 1;
383
+ color: #9ca3af;
384
+ }
385
+
386
+ [class^="xpl-"] input::-moz-placeholder, input[class^="xpl-"]::-moz-placeholder, [class^="xpl-"] textarea::-moz-placeholder, textarea[class^="xpl-"]::-moz-placeholder {
387
+ opacity: 1;
388
+ color: #9ca3af;
389
+ }
390
+
391
+ [class^="xpl-"] input:-ms-input-placeholder, input[class^="xpl-"]:-ms-input-placeholder, [class^="xpl-"] textarea:-ms-input-placeholder, textarea[class^="xpl-"]:-ms-input-placeholder {
392
+ opacity: 1;
393
+ color: #9ca3af;
394
+ }
395
+
396
+ [class^="xpl-"] input::placeholder,
397
+ input[class^="xpl-"]::placeholder,
398
+ [class^="xpl-"] textarea::placeholder,
399
+ textarea[class^="xpl-"]::placeholder {
400
+ opacity: 1;
401
+ color: #9ca3af;
402
+ }
403
+
404
+ [class^="xpl-"] button,
405
+ button[class^="xpl-"] {
406
+ cursor: pointer;
407
+ }
408
+
409
+ [class^="xpl-"] table,
410
+ table[class^="xpl-"] {
411
+ border-collapse: collapse;
412
+ }
413
+
414
+ [class^="xpl-"] h1,
415
+ [class^="xpl-"] h2,
416
+ [class^="xpl-"] h3,
417
+ [class^="xpl-"] h4,
418
+ [class^="xpl-"] h5,
419
+ [class^="xpl-"] h6 {
420
+ font-size: inherit;
421
+ font-weight: inherit;
422
+ }
423
+
424
+ /**
425
+ * Reset links to optimize for opt-in styling instead of
426
+ * opt-out.
427
+ */
428
+
429
+ [class^="xpl-"] a {
430
+ color: inherit;
431
+ text-decoration: inherit;
432
+ }
433
+
434
+ /**
435
+ * Reset form element properties that are easy to forget to
436
+ * style explicitly so you don't inadvertently introduce
437
+ * styles that deviate from your design system. These styles
438
+ * supplement a partial reset that is already applied by
439
+ * normalize.css.
440
+ */
441
+
442
+ [class^="xpl-"] button,
443
+ button[class^="xpl-"],
444
+ [class^="xpl-"] input,
445
+ input[class^="xpl-"],
446
+ [class^="xpl-"] optgroup,
447
+ optgroup[class^="xpl-"],
448
+ [class^="xpl-"] select,
449
+ select[class^="xpl-"],
450
+ [class^="xpl-"] textarea,
451
+ textarea[class^="xpl-"] {
452
+ padding: 0;
453
+ line-height: inherit;
454
+ color: inherit;
455
+ }
456
+
457
+ /**
458
+ * Use the configured 'mono' font family for elements that
459
+ * are expected to be rendered with a monospace font, falling
460
+ * back to the system monospace stack if there is no configured
461
+ * 'mono' font family.
462
+ */
463
+
464
+ [class^="xpl-"] pre,
465
+ [class^="xpl-"] code,
466
+ [class^="xpl-"] kbd,
467
+ [class^="xpl-"] samp {
468
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
469
+ "Liberation Mono", "Courier New", monospace;
470
+ }
471
+
472
+ /**
473
+ * Make replaced elements `display: block` by default as that's
474
+ * the behavior you want almost all of the time. Inspired by
475
+ * CSS Remedy, with `svg` added as well.
476
+ *
477
+ * https://github.com/mozdevs/cssremedy/issues/14
478
+ */
479
+
480
+ [class^="xpl-"] img,
481
+ [class^="xpl-"] svg,
482
+ [class^="xpl-"] video,
483
+ [class^="xpl-"] canvas,
484
+ [class^="xpl-"] audio,
485
+ [class^="xpl-"] iframe,
486
+ [class^="xpl-"] embed,
487
+ [class^="xpl-"] object {
488
+ display: block;
489
+ vertical-align: middle;
490
+ }
491
+
492
+ /**
493
+ * Constrain images and videos to the parent width and preserve
494
+ * their intrinsic aspect ratio.
495
+ *
496
+ * https://github.com/mozdevs/cssremedy/issues/14
497
+ */
498
+
499
+ [class^="xpl-"] img,
500
+ [class^="xpl-"] video {
501
+ max-width: 100%;
502
+ height: auto;
503
+ }
504
+
505
+ * {
506
+ --tw-shadow: 0 0 #0000;
507
+ }
508
+
509
+ * {
510
+ --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
511
+ --tw-ring-offset-width: 0px;
512
+ --tw-ring-offset-color: #fff;
513
+ --tw-ring-color: rgba(59, 130, 246, 0.5);
514
+ --tw-ring-offset-shadow: 0 0 #0000;
515
+ --tw-ring-shadow: 0 0 #0000;
516
+ }
517
+
518
+ .xpl-avatar {
519
+ display: inline-block;
520
+ position: relative;
521
+ }
522
+
523
+ .xpl-avatar img {
524
+ border-radius: 9999px;
525
+ height: 2.5rem;
526
+ width: 2.5rem;
527
+ }
528
+
529
+ .xpl-avatar-dot {
530
+ --tw-bg-opacity: 1;
531
+ background-color: rgba(249, 145, 112, var(--tw-bg-opacity));
532
+ border-radius: 9999px;
533
+ display: block;
534
+ height: 0.625rem;
535
+ position: absolute;
536
+ top: 0px;
537
+ right: 0px;
538
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
539
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
540
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
541
+ --tw-ring-opacity: 1;
542
+ --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
543
+ width: 0.625rem;
544
+ }
545
+
546
+ .xpl-avatar-dot--bottom {
547
+ bottom: 0px;
548
+ top: auto;
549
+ }
550
+
551
+ .xpl-avatar--s img {
552
+ height: 2rem;
553
+ width: 2rem;
554
+ }
555
+
556
+ .xpl-avatar--s .xpl-avatar-dot {
557
+ height: 0.5rem;
558
+ width: 0.5rem;
559
+ }
560
+
561
+ .xpl-avatar--xs img {
562
+ height: 1.5rem;
563
+ width: 1.5rem;
564
+ }
565
+
566
+ .xpl-avatar--xs .xpl-avatar-dot {
567
+ height: 0.375rem;
568
+ width: 0.375rem;
569
+ }
570
+
571
+ .xpl-avatar--l img {
572
+ height: 3rem;
573
+ width: 3rem;
574
+ }
575
+
576
+ .xpl-avatar--l .xpl-avatar-dot {
577
+ height: 0.875rem;
578
+ width: 0.875rem;
579
+ }
580
+
581
+ .xpl-avatar--xl img {
582
+ height: 3.5rem;
583
+ width: 3.5rem;
584
+ }
585
+
586
+ .xpl-avatar--xl .xpl-avatar-dot {
587
+ height: 1rem;
588
+ width: 1rem;
589
+ }
590
+
591
+ .xpl-avatar--rounded img {
592
+ border-radius: 0.375rem;
593
+ }
594
+
595
+ .xpl-avatar--rounded .xpl-avatar-dot {
596
+ --tw-translate-x: 0;
597
+ --tw-translate-y: 0;
598
+ --tw-rotate: 0;
599
+ --tw-skew-x: 0;
600
+ --tw-skew-y: 0;
601
+ --tw-scale-x: 1;
602
+ --tw-scale-y: 1;
603
+ transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
604
+ --tw-translate-x: 50%;
605
+ --tw-translate-y: -50%;
606
+ }
607
+
608
+ .xpl-avatar--rounded .xpl-avatar-dot--bottom {
609
+ --tw-translate-y: 50%;
610
+ }
611
+
612
+ .xpl-avatar-group > :not([hidden]) ~ :not([hidden]) {
613
+ --tw-space-x-reverse: 0;
614
+ margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
615
+ margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
616
+ }
617
+
618
+ .xpl-avatar-group {
619
+ display: flex;
620
+ overflow: hidden;
621
+ }
622
+
623
+ .xpl-avatar-group img {
624
+ border-radius: 9999px;
625
+ display: inline-block;
626
+ height: 2rem;
627
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
628
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
629
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
630
+ --tw-ring-opacity: 1;
631
+ --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
632
+ width: 2rem;
633
+ }
634
+
635
+ .xpl-avatar-group--s > :not([hidden]) ~ :not([hidden]) {
636
+ --tw-space-x-reverse: 0;
637
+ margin-right: calc(-0.25rem * var(--tw-space-x-reverse));
638
+ margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse)));
639
+ }
640
+
641
+ .xpl-avatar-group--s img {
642
+ height: 1.5rem;
643
+ width: 1.5rem;
644
+ }
645
+
646
+ .xpl-avatar-group--l img {
647
+ height: 2.5rem;
648
+ width: 2.5rem;
649
+ }
650
+
651
+ .xpl-avatar-group--reverse {
652
+ position: relative;
653
+ z-index: 0;
654
+ }
655
+
656
+ .xpl-avatar-group--reverse img:nth-child(0) {
657
+ position: relative;
658
+ z-index: 50;
659
+ }
660
+
661
+ .xpl-avatar-group--reverse img:nth-child(1) {
662
+ position: relative;
663
+ z-index: 40;
664
+ }
665
+
666
+ .xpl-avatar-group--reverse img:nth-child(2) {
667
+ position: relative;
668
+ z-index: 30;
669
+ }
670
+
671
+ .xpl-avatar-group--reverse img:nth-child(3) {
672
+ position: relative;
673
+ z-index: 20;
674
+ }
675
+
676
+ .xpl-avatar-group--reverse img:nth-child(4) {
677
+ position: relative;
678
+ z-index: 10;
679
+ }
680
+
681
+ .xpl-badge {
682
+ --tw-bg-opacity: 1;
683
+ background-color: rgba(245, 247, 250, var(--tw-bg-opacity));
684
+ border-radius: 9999px;
685
+ display: inline-flex;
686
+ align-items: center;
687
+ font-weight: 500;
688
+ font-size: 0.625rem;
689
+ line-height: 0.875rem;
690
+ padding-top: 0.125rem;
691
+ padding-bottom: 0.125rem;
692
+ padding-left: 0.625rem;
693
+ padding-right: 0.625rem;
694
+ --tw-text-opacity: 1;
695
+ color: rgba(55, 62, 78, var(--tw-text-opacity));
696
+ }
697
+
698
+ .xpl-badge.xpl-badge--error {
699
+ --tw-bg-opacity: 1;
700
+ background-color: rgba(255, 233, 229, var(--tw-bg-opacity));
701
+ --tw-text-opacity: 1;
702
+ color: rgba(168, 36, 16, var(--tw-text-opacity));
703
+ }
704
+
705
+ .xpl-badge.xpl-badge--warning {
706
+ --tw-bg-opacity: 1;
707
+ background-color: rgba(244, 253, 197, var(--tw-bg-opacity));
708
+ --tw-text-opacity: 1;
709
+ color: rgba(102, 102, 0, var(--tw-text-opacity));
710
+ }
711
+
712
+ .xpl-badge.xpl-badge--success {
713
+ --tw-bg-opacity: 1;
714
+ background-color: rgba(196, 255, 237, var(--tw-bg-opacity));
715
+ --tw-text-opacity: 1;
716
+ color: rgba(29, 97, 75, var(--tw-text-opacity));
717
+ }
718
+
719
+ .xpl-badge.xpl-badge--large {
720
+ font-weight: 500;
721
+ font-size: 0.75rem;
722
+ line-height: 1rem;
723
+ padding-left: 0.75rem;
724
+ padding-right: 0.75rem;
725
+ padding-top: 0.125rem;
726
+ padding-bottom: 0.125rem;
727
+ }
728
+
729
+ .xpl-pagination {
730
+ --tw-bg-opacity: 1;
731
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
732
+ padding-top: 0.75rem;
733
+ padding-bottom: 0.75rem;
734
+ }
735
+
736
+ @media (min-width: 768px) {
737
+ .xpl-pagination {
738
+ display: flex;
739
+ align-items: center;
740
+ justify-content: space-between;
741
+ }
742
+ }
743
+
744
+ .xpl-pagination p {
745
+ font-size: 0.75rem;
746
+ line-height: 1rem;
747
+ padding-bottom: 0.5rem;
748
+ --tw-text-opacity: 1;
749
+ color: rgba(68, 75, 92, var(--tw-text-opacity));
750
+ }
751
+
752
+ @media (min-width: 768px) {
753
+ .xpl-pagination p {
754
+ padding-bottom: 0px;
755
+ }
756
+ }
757
+
758
+ .xpl-pagination span {
759
+ font-weight: 500;
760
+ }
761
+
762
+ .xpl-pagination nav > :not([hidden]) ~ :not([hidden]) {
763
+ --tw-space-x-reverse: 0;
764
+ margin-right: calc(-1px * var(--tw-space-x-reverse));
765
+ margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
766
+ }
767
+
768
+ .xpl-pagination nav {
769
+ border-radius: 0.375rem;
770
+ display: inline-flex;
771
+ position: relative;
772
+ --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
773
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
774
+ z-index: 0;
775
+ }
776
+
777
+ .xpl-pagination svg {
778
+ height: 1.25rem;
779
+ width: 1.25rem;
780
+ fill: currentColor;
781
+ }
782
+
783
+ .xpl-pagination .xpl-pagination-prev {
784
+ --tw-bg-opacity: 1;
785
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
786
+ }
787
+
788
+ .xpl-pagination .xpl-pagination-prev:hover {
789
+ --tw-bg-opacity: 1;
790
+ background-color: rgba(250, 251, 252, var(--tw-bg-opacity));
791
+ }
792
+
793
+ .xpl-pagination .xpl-pagination-prev {
794
+ --tw-border-opacity: 1;
795
+ border-color: rgba(206, 211, 219, var(--tw-border-opacity));
796
+ border-top-left-radius: 0.375rem;
797
+ border-bottom-left-radius: 0.375rem;
798
+ border-width: 1px;
799
+ display: inline-flex;
800
+ align-items: center;
801
+ font-weight: 500;
802
+ font-size: 0.75rem;
803
+ line-height: 1rem;
804
+ padding-top: 0.5rem;
805
+ padding-bottom: 0.5rem;
806
+ padding-left: 0.5rem;
807
+ padding-right: 0.5rem;
808
+ position: relative;
809
+ --tw-text-opacity: 1;
810
+ color: rgba(102, 109, 125, var(--tw-text-opacity));
811
+ }
812
+
813
+ .xpl-pagination .xpl-pagination-next {
814
+ --tw-bg-opacity: 1;
815
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
816
+ }
817
+
818
+ .xpl-pagination .xpl-pagination-next:hover {
819
+ --tw-bg-opacity: 1;
820
+ background-color: rgba(250, 251, 252, var(--tw-bg-opacity));
821
+ }
822
+
823
+ .xpl-pagination .xpl-pagination-next {
824
+ --tw-border-opacity: 1;
825
+ border-color: rgba(206, 211, 219, var(--tw-border-opacity));
826
+ border-top-right-radius: 0.375rem;
827
+ border-bottom-right-radius: 0.375rem;
828
+ border-width: 1px;
829
+ display: inline-flex;
830
+ align-items: center;
831
+ font-weight: 500;
832
+ font-size: 0.75rem;
833
+ line-height: 1rem;
834
+ padding-top: 0.5rem;
835
+ padding-bottom: 0.5rem;
836
+ padding-left: 0.5rem;
837
+ padding-right: 0.5rem;
838
+ position: relative;
839
+ --tw-text-opacity: 1;
840
+ color: rgba(102, 109, 125, var(--tw-text-opacity));
841
+ }
842
+
843
+ .xpl-pagination .xpl-pagination-prev span, .xpl-pagination .xpl-pagination-next span {
844
+ position: absolute;
845
+ width: 1px;
846
+ height: 1px;
847
+ padding: 0;
848
+ margin: -1px;
849
+ overflow: hidden;
850
+ clip: rect(0, 0, 0, 0);
851
+ white-space: nowrap;
852
+ border-width: 0;
853
+ }
854
+
855
+ .xpl-pagination a, .xpl-pagination button {
856
+ --tw-bg-opacity: 1;
857
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
858
+ }
859
+
860
+ .xpl-pagination a:hover, .xpl-pagination button:hover {
861
+ --tw-bg-opacity: 1;
862
+ background-color: rgba(250, 251, 252, var(--tw-bg-opacity));
863
+ }
864
+
865
+ .xpl-pagination a, .xpl-pagination button {
866
+ --tw-border-opacity: 1;
867
+ border-color: rgba(206, 211, 219, var(--tw-border-opacity));
868
+ border-width: 1px;
869
+ display: inline-flex;
870
+ align-items: center;
871
+ font-weight: 500;
872
+ font-size: 0.75rem;
873
+ line-height: 1rem;
874
+ padding-top: 0.5rem;
875
+ padding-bottom: 0.5rem;
876
+ padding-left: 1rem;
877
+ padding-right: 1rem;
878
+ position: relative;
879
+ --tw-text-opacity: 1;
880
+ color: rgba(102, 109, 125, var(--tw-text-opacity));
881
+ }
882
+
883
+ .xpl-pagination-ellipsis {
884
+ --tw-bg-opacity: 1;
885
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
886
+ --tw-border-opacity: 1;
887
+ border-color: rgba(206, 211, 219, var(--tw-border-opacity));
888
+ border-width: 1px;
889
+ display: inline-flex;
890
+ align-items: center;
891
+ font-weight: 500;
892
+ font-size: 0.75rem;
893
+ line-height: 1rem;
894
+ padding-top: 0.5rem;
895
+ padding-bottom: 0.5rem;
896
+ padding-left: 1rem;
897
+ padding-right: 1rem;
898
+ position: relative;
899
+ --tw-text-opacity: 1;
900
+ color: rgba(68, 75, 92, var(--tw-text-opacity));
901
+ }
902
+
903
+ .xpl-pagination .xpl-pagination-current {
904
+ --tw-bg-opacity: 1;
905
+ background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
906
+ --tw-border-opacity: 1;
907
+ border-color: rgba(99, 102, 241, var(--tw-border-opacity));
908
+ --tw-text-opacity: 1;
909
+ color: rgba(79, 70, 229, var(--tw-text-opacity));
910
+ z-index: 10;
911
+ }
912
+
913
+ .xpl-pagination .xpl-pagination-current:hover {
914
+ --tw-bg-opacity: 1;
915
+ background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
916
+ }
917
+
918
+ .xpl-pagination .xpl-pagination-show-md {
919
+ display: none;
920
+ }
921
+
922
+ @media (min-width: 768px) {
923
+ .xpl-pagination .xpl-pagination-show-md {
924
+ display: inline-flex;
925
+ }
926
+ }
927
+
928
+ .xpl-table-container {
929
+ --tw-border-opacity: 1;
930
+ border-color: rgba(228, 230, 235, var(--tw-border-opacity));
931
+ border-bottom-width: 1px;
932
+ overflow: auto;
933
+ --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
934
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
935
+ }
936
+
937
+ @media (min-width: 640px) {
938
+ .xpl-table-container {
939
+ border-radius: 0.5rem;
940
+ }
941
+ }
942
+
943
+ .xpl-table > :not([hidden]) ~ :not([hidden]) {
944
+ --tw-divide-y-reverse: 0;
945
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
946
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
947
+ --tw-divide-opacity: 1;
948
+ border-color: rgba(228, 230, 235, var(--tw-divide-opacity));
949
+ }
950
+
951
+ .xpl-table {
952
+ min-width: 100%;
953
+ }
954
+
955
+ .xpl-table--abs {
956
+ position: absolute;
957
+ }
958
+
959
+ .xpl-table--sticky thead th:first-child, .xpl-table--sticky tbody td:first-child {
960
+ --tw-bg-opacity: 1;
961
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
962
+ position: sticky;
963
+ left: 0px;
964
+ z-index: 10;
965
+ }
966
+
967
+ .xpl-table--sticky thead th:first-child {
968
+ --tw-bg-opacity: 1;
969
+ background-color: rgba(250, 251, 252, var(--tw-bg-opacity));
970
+ }
971
+
972
+ .xpl-table thead {
973
+ --tw-bg-opacity: 1;
974
+ background-color: rgba(250, 251, 252, var(--tw-bg-opacity));
975
+ }
976
+
977
+ .xpl-table thead th {
978
+ font-weight: 500;
979
+ font-size: 0.625rem;
980
+ line-height: 0.875rem;
981
+ padding-top: 0.75rem;
982
+ padding-bottom: 0.75rem;
983
+ padding-left: 1.5rem;
984
+ padding-right: 1.5rem;
985
+ text-align: left;
986
+ --tw-text-opacity: 1;
987
+ color: rgba(102, 109, 125, var(--tw-text-opacity));
988
+ text-transform: uppercase;
989
+ letter-spacing: 0.05em;
990
+ white-space: nowrap;
991
+ }
992
+
993
+ .xpl-table tbody {
994
+ --tw-bg-opacity: 1;
995
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
996
+ }
997
+
998
+ .xpl-table:not(.xpl-table--striped) tbody > :not([hidden]) ~ :not([hidden]) {
999
+ --tw-divide-y-reverse: 0;
1000
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
1001
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
1002
+ --tw-divide-opacity: 1;
1003
+ border-color: rgba(228, 230, 235, var(--tw-divide-opacity));
1004
+ }
1005
+
1006
+ .xpl-table.xpl-table--striped tbody tr:nth-child(2n) td {
1007
+ --tw-bg-opacity: 1;
1008
+ background-color: rgba(250, 251, 252, var(--tw-bg-opacity));
1009
+ }
1010
+
1011
+ .xpl-table tbody tr td {
1012
+ padding-top: 1rem;
1013
+ padding-bottom: 1rem;
1014
+ padding-left: 1.5rem;
1015
+ padding-right: 1.5rem;
1016
+ white-space: nowrap;
1017
+ font-size: 0.75rem;
1018
+ line-height: 1rem;
1019
+ --tw-text-opacity: 1;
1020
+ color: rgba(102, 109, 125, var(--tw-text-opacity));
1021
+ }
1022
+
1023
+ .xpl-table tbody tr td:first-child, .xpl-table p {
1024
+ font-weight: 500;
1025
+ font-size: 0.75rem;
1026
+ line-height: 1rem;
1027
+ --tw-text-opacity: 1;
1028
+ color: rgba(33, 38, 51, var(--tw-text-opacity));
1029
+ }
1030
+
1031
+ .xpl-table .wrap {
1032
+ white-space: normal;
1033
+ }
1034
+
1035
+ .xpl-table a {
1036
+ --tw-text-opacity: 1;
1037
+ color: rgba(79, 70, 229, var(--tw-text-opacity));
1038
+ }
1039
+
1040
+ .xpl-table a:hover {
1041
+ --tw-text-opacity: 1;
1042
+ color: rgba(49, 46, 129, var(--tw-text-opacity));
1043
+ }
1044
+
1045
+ .xpl-table input[type="checkbox"] {
1046
+ cursor: pointer;
1047
+ margin-right: 1rem;
1048
+ }
1049
+
1050
+ .xpl-tabs {
1051
+ margin-bottom: 0.75rem;
1052
+ overflow-x: auto;
1053
+ }
1054
+
1055
+ .xpl-tabs nav > :not([hidden]) ~ :not([hidden]) {
1056
+ --tw-space-x-reverse: 0;
1057
+ margin-right: calc(2rem * var(--tw-space-x-reverse));
1058
+ margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
1059
+ }
1060
+
1061
+ .xpl-tabs nav {
1062
+ --tw-border-opacity: 1;
1063
+ border-color: rgba(228, 230, 235, var(--tw-border-opacity));
1064
+ border-bottom-width: 1px;
1065
+ display: flex;
1066
+ min-width: 100%;
1067
+ }
1068
+
1069
+ .xpl-tabs a, .xpl-tabs button {
1070
+ border-color: transparent;
1071
+ }
1072
+
1073
+ .xpl-tabs a:hover, .xpl-tabs button:hover {
1074
+ --tw-border-opacity: 1;
1075
+ border-color: rgba(228, 230, 235, var(--tw-border-opacity));
1076
+ }
1077
+
1078
+ .xpl-tabs a, .xpl-tabs button {
1079
+ border-bottom-width: 2px;
1080
+ display: flex;
1081
+ font-weight: 500;
1082
+ font-size: 0.75rem;
1083
+ line-height: 1rem;
1084
+ padding-left: 0.25rem;
1085
+ padding-right: 0.25rem;
1086
+ padding-top: 1rem;
1087
+ padding-bottom: 1rem;
1088
+ --tw-text-opacity: 1;
1089
+ color: rgba(102, 109, 125, var(--tw-text-opacity));
1090
+ }
1091
+
1092
+ .xpl-tabs a:hover, .xpl-tabs button:hover {
1093
+ --tw-text-opacity: 1;
1094
+ color: rgba(68, 75, 92, var(--tw-text-opacity));
1095
+ }
1096
+
1097
+ .xpl-tabs a, .xpl-tabs button {
1098
+ white-space: nowrap;
1099
+ }
1100
+
1101
+ .xpl-tabs a span, .xpl-tabs button span {
1102
+ --tw-bg-opacity: 1;
1103
+ background-color: rgba(245, 247, 250, var(--tw-bg-opacity));
1104
+ border-radius: 9999px;
1105
+ font-weight: 500;
1106
+ font-size: 0.625rem;
1107
+ line-height: 0.875rem;
1108
+ margin-left: 0.75rem;
1109
+ padding-top: 0.125rem;
1110
+ padding-bottom: 0.125rem;
1111
+ padding-left: 0.625rem;
1112
+ padding-right: 0.625rem;
1113
+ --tw-text-opacity: 1;
1114
+ color: rgba(33, 38, 51, var(--tw-text-opacity));
1115
+ }
1116
+
1117
+ .xpl-tabs a.current, .xpl-tabs button.current {
1118
+ --tw-border-opacity: 1;
1119
+ border-color: rgba(99, 102, 241, var(--tw-border-opacity));
1120
+ --tw-text-opacity: 1;
1121
+ color: rgba(79, 70, 229, var(--tw-text-opacity));
1122
+ }
1123
+
1124
+ .xpl-tabs a.current span, .xpl-tabs button.current span {
1125
+ --tw-bg-opacity: 1;
1126
+ background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
1127
+ --tw-text-opacity: 1;
1128
+ color: rgba(79, 70, 229, var(--tw-text-opacity));
1129
+ }