@digital-realty/ix-notifications 1.0.1

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 (103) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +62 -0
  3. package/dist/IxNotifications.d.ts +37 -0
  4. package/dist/IxNotifications.js +278 -0
  5. package/dist/IxNotifications.js.map +1 -0
  6. package/dist/api/notifications-api/apis/NotificationsApi.d.ts +83 -0
  7. package/dist/api/notifications-api/apis/NotificationsApi.js +204 -0
  8. package/dist/api/notifications-api/apis/NotificationsApi.js.map +1 -0
  9. package/dist/api/notifications-api/apis/index.d.ts +1 -0
  10. package/dist/api/notifications-api/apis/index.js +4 -0
  11. package/dist/api/notifications-api/apis/index.js.map +1 -0
  12. package/dist/api/notifications-api/index.d.ts +3 -0
  13. package/dist/api/notifications-api/index.js +6 -0
  14. package/dist/api/notifications-api/index.js.map +1 -0
  15. package/dist/api/notifications-api/models/ErrorResponse.d.ts +55 -0
  16. package/dist/api/notifications-api/models/ErrorResponse.js +52 -0
  17. package/dist/api/notifications-api/models/ErrorResponse.js.map +1 -0
  18. package/dist/api/notifications-api/models/GetNotifications200Response.d.ts +62 -0
  19. package/dist/api/notifications-api/models/GetNotifications200Response.js +56 -0
  20. package/dist/api/notifications-api/models/GetNotifications200Response.js.map +1 -0
  21. package/dist/api/notifications-api/models/Notification.d.ts +86 -0
  22. package/dist/api/notifications-api/models/Notification.js +63 -0
  23. package/dist/api/notifications-api/models/Notification.js.map +1 -0
  24. package/dist/api/notifications-api/models/NotificationDelete.d.ts +31 -0
  25. package/dist/api/notifications-api/models/NotificationDelete.js +44 -0
  26. package/dist/api/notifications-api/models/NotificationDelete.js.map +1 -0
  27. package/dist/api/notifications-api/models/NotificationPatch.d.ts +32 -0
  28. package/dist/api/notifications-api/models/NotificationPatch.js +45 -0
  29. package/dist/api/notifications-api/models/NotificationPatch.js.map +1 -0
  30. package/dist/api/notifications-api/models/NotificationRequest.d.ts +73 -0
  31. package/dist/api/notifications-api/models/NotificationRequest.js +62 -0
  32. package/dist/api/notifications-api/models/NotificationRequest.js.map +1 -0
  33. package/dist/api/notifications-api/models/PaginatedResponse.d.ts +61 -0
  34. package/dist/api/notifications-api/models/PaginatedResponse.js +55 -0
  35. package/dist/api/notifications-api/models/PaginatedResponse.js.map +1 -0
  36. package/dist/api/notifications-api/models/Status.d.ts +23 -0
  37. package/dist/api/notifications-api/models/Status.js +31 -0
  38. package/dist/api/notifications-api/models/Status.js.map +1 -0
  39. package/dist/api/notifications-api/models/index.d.ts +8 -0
  40. package/dist/api/notifications-api/models/index.js +11 -0
  41. package/dist/api/notifications-api/models/index.js.map +1 -0
  42. package/dist/api/notifications-api/runtime.d.ts +182 -0
  43. package/dist/api/notifications-api/runtime.js +319 -0
  44. package/dist/api/notifications-api/runtime.js.map +1 -0
  45. package/dist/components/notifications/confirmation-dialog.d.ts +10 -0
  46. package/dist/components/notifications/confirmation-dialog.js +67 -0
  47. package/dist/components/notifications/confirmation-dialog.js.map +1 -0
  48. package/dist/components/notifications/date-filters.d.ts +19 -0
  49. package/dist/components/notifications/date-filters.js +152 -0
  50. package/dist/components/notifications/date-filters.js.map +1 -0
  51. package/dist/components/notifications/group-filters.d.ts +8 -0
  52. package/dist/components/notifications/group-filters.js +75 -0
  53. package/dist/components/notifications/group-filters.js.map +1 -0
  54. package/dist/components/notifications/grouped-item.d.ts +13 -0
  55. package/dist/components/notifications/grouped-item.js +81 -0
  56. package/dist/components/notifications/grouped-item.js.map +1 -0
  57. package/dist/components/notifications/notification-item.d.ts +18 -0
  58. package/dist/components/notifications/notification-item.js +137 -0
  59. package/dist/components/notifications/notification-item.js.map +1 -0
  60. package/dist/components/notifications/view-item-dialog.d.ts +12 -0
  61. package/dist/components/notifications/view-item-dialog.js +102 -0
  62. package/dist/components/notifications/view-item-dialog.js.map +1 -0
  63. package/dist/constants/api-constants.d.ts +3 -0
  64. package/dist/constants/api-constants.js +4 -0
  65. package/dist/constants/api-constants.js.map +1 -0
  66. package/dist/constants/notification-types.d.ts +15 -0
  67. package/dist/constants/notification-types.js +2 -0
  68. package/dist/constants/notification-types.js.map +1 -0
  69. package/dist/constants/notifications.d.ts +15 -0
  70. package/dist/constants/notifications.js +19 -0
  71. package/dist/constants/notifications.js.map +1 -0
  72. package/dist/helper/errors.d.ts +1 -0
  73. package/dist/helper/errors.js +20 -0
  74. package/dist/helper/errors.js.map +1 -0
  75. package/dist/index.d.ts +1 -0
  76. package/dist/index.js +2 -0
  77. package/dist/index.js.map +1 -0
  78. package/dist/ix-notifications.d.ts +1 -0
  79. package/dist/ix-notifications.js +3 -0
  80. package/dist/ix-notifications.js.map +1 -0
  81. package/dist/ix-notifications.min.js +1 -0
  82. package/dist/models/notification.d.ts +13 -0
  83. package/dist/models/notification.js +2 -0
  84. package/dist/models/notification.js.map +1 -0
  85. package/dist/services/api-client.d.ts +13 -0
  86. package/dist/services/api-client.js +24 -0
  87. package/dist/services/api-client.js.map +1 -0
  88. package/dist/services/app-service.d.ts +1 -0
  89. package/dist/services/app-service.js +7 -0
  90. package/dist/services/app-service.js.map +1 -0
  91. package/dist/services/notifications-service.d.ts +10 -0
  92. package/dist/services/notifications-service.js +56 -0
  93. package/dist/services/notifications-service.js.map +1 -0
  94. package/dist/state/NotificationState.d.ts +28 -0
  95. package/dist/state/NotificationState.js +153 -0
  96. package/dist/state/NotificationState.js.map +1 -0
  97. package/dist/styles/notifications-style.d.ts +1 -0
  98. package/dist/styles/notifications-style.js +133 -0
  99. package/dist/styles/notifications-style.js.map +1 -0
  100. package/dist/tw.d.ts +1 -0
  101. package/dist/tw.js +890 -0
  102. package/dist/tw.js.map +1 -0
  103. package/package.json +138 -0
package/dist/tw.js ADDED
@@ -0,0 +1,890 @@
1
+ import { css } from 'lit';
2
+ export const TWStyles = css `
3
+ /*
4
+ ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
5
+ */
6
+
7
+ /*
8
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
9
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
10
+ */
11
+
12
+ *,
13
+ ::before,
14
+ ::after {
15
+ box-sizing: border-box;
16
+ /* 1 */
17
+ border-width: 0;
18
+ /* 2 */
19
+ border-style: solid;
20
+ /* 2 */
21
+ border-color: #e5e7eb;
22
+ /* 2 */
23
+ }
24
+
25
+ ::before,
26
+ ::after {
27
+ --tw-content: '';
28
+ }
29
+
30
+ /*
31
+ 1. Use a consistent sensible line-height in all browsers.
32
+ 2. Prevent adjustments of font size after orientation changes in iOS.
33
+ 3. Use a more readable tab size.
34
+ 4. Use the user's configured sans font-family by default.
35
+ 5. Use the user's configured sans font-feature-settings by default.
36
+ 6. Use the user's configured sans font-variation-settings by default.
37
+ 7. Disable tap highlights on iOS
38
+ */
39
+
40
+ html,
41
+ :host {
42
+ line-height: 1.5;
43
+ /* 1 */
44
+ -webkit-text-size-adjust: 100%;
45
+ /* 2 */
46
+ -moz-tab-size: 4;
47
+ /* 3 */
48
+ -o-tab-size: 4;
49
+ tab-size: 4;
50
+ /* 3 */
51
+ font-family: Open Sans, sans-serif;
52
+ /* 4 */
53
+ font-feature-settings: normal;
54
+ /* 5 */
55
+ font-variation-settings: normal;
56
+ /* 6 */
57
+ -webkit-tap-highlight-color: transparent;
58
+ /* 7 */
59
+ }
60
+
61
+ /*
62
+ 1. Remove the margin in all browsers.
63
+ 2. Inherit line-height from html so users can set them as a class directly on the html element.
64
+ */
65
+
66
+ body {
67
+ margin: 0;
68
+ /* 1 */
69
+ line-height: inherit;
70
+ /* 2 */
71
+ }
72
+
73
+ /*
74
+ 1. Add the correct height in Firefox.
75
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
76
+ 3. Ensure horizontal rules are visible by default.
77
+ */
78
+
79
+ hr {
80
+ height: 0;
81
+ /* 1 */
82
+ color: inherit;
83
+ /* 2 */
84
+ border-top-width: 1px;
85
+ /* 3 */
86
+ }
87
+
88
+ /*
89
+ Add the correct text decoration in Chrome, Edge, and Safari.
90
+ */
91
+
92
+ abbr:where([title]) {
93
+ -webkit-text-decoration: underline dotted;
94
+ text-decoration: underline dotted;
95
+ }
96
+
97
+ /*
98
+ Remove the default font size and weight for headings.
99
+ */
100
+
101
+ h1,
102
+ h2,
103
+ h3,
104
+ h4,
105
+ h5,
106
+ h6 {
107
+ font-size: inherit;
108
+ font-weight: inherit;
109
+ }
110
+
111
+ /*
112
+ Reset links to optimize for opt-in styling instead of opt-out.
113
+ */
114
+
115
+ a {
116
+ color: inherit;
117
+ text-decoration: inherit;
118
+ }
119
+
120
+ /*
121
+ Add the correct font weight in Edge and Safari.
122
+ */
123
+
124
+ b,
125
+ strong {
126
+ font-weight: bolder;
127
+ }
128
+
129
+ /*
130
+ 1. Use the user's configured mono font-family by default.
131
+ 2. Use the user's configured mono font-feature-settings by default.
132
+ 3. Use the user's configured mono font-variation-settings by default.
133
+ 4. Correct the odd em font sizing in all browsers.
134
+ */
135
+
136
+ code,
137
+ kbd,
138
+ samp,
139
+ pre {
140
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
141
+ 'Liberation Mono', 'Courier New', monospace;
142
+ /* 1 */
143
+ font-feature-settings: normal;
144
+ /* 2 */
145
+ font-variation-settings: normal;
146
+ /* 3 */
147
+ font-size: 1em;
148
+ /* 4 */
149
+ }
150
+
151
+ /*
152
+ Add the correct font size in all browsers.
153
+ */
154
+
155
+ small {
156
+ font-size: 80%;
157
+ }
158
+
159
+ /*
160
+ Prevent sub and sup elements from affecting the line height in all browsers.
161
+ */
162
+
163
+ sub,
164
+ sup {
165
+ font-size: 75%;
166
+ line-height: 0;
167
+ position: relative;
168
+ vertical-align: baseline;
169
+ }
170
+
171
+ sub {
172
+ bottom: -0.25em;
173
+ }
174
+
175
+ sup {
176
+ top: -0.5em;
177
+ }
178
+
179
+ /*
180
+ 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)
181
+ 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)
182
+ 3. Remove gaps between table borders by default.
183
+ */
184
+
185
+ table {
186
+ text-indent: 0;
187
+ /* 1 */
188
+ border-color: inherit;
189
+ /* 2 */
190
+ border-collapse: collapse;
191
+ /* 3 */
192
+ }
193
+
194
+ /*
195
+ 1. Change the font styles in all browsers.
196
+ 2. Remove the margin in Firefox and Safari.
197
+ 3. Remove default padding in all browsers.
198
+ */
199
+
200
+ button,
201
+ input,
202
+ optgroup,
203
+ select,
204
+ textarea {
205
+ font-family: inherit;
206
+ /* 1 */
207
+ font-feature-settings: inherit;
208
+ /* 1 */
209
+ font-variation-settings: inherit;
210
+ /* 1 */
211
+ font-size: 100%;
212
+ /* 1 */
213
+ font-weight: inherit;
214
+ /* 1 */
215
+ line-height: inherit;
216
+ /* 1 */
217
+ letter-spacing: inherit;
218
+ /* 1 */
219
+ color: inherit;
220
+ /* 1 */
221
+ margin: 0;
222
+ /* 2 */
223
+ padding: 0;
224
+ /* 3 */
225
+ }
226
+
227
+ /*
228
+ Remove the inheritance of text transform in Edge and Firefox.
229
+ */
230
+
231
+ button,
232
+ select {
233
+ text-transform: none;
234
+ }
235
+
236
+ /*
237
+ 1. Correct the inability to style clickable types in iOS and Safari.
238
+ 2. Remove default button styles.
239
+ */
240
+
241
+ button,
242
+ input:where([type='button']),
243
+ input:where([type='reset']),
244
+ input:where([type='submit']) {
245
+ -webkit-appearance: button;
246
+ /* 1 */
247
+ background-color: transparent;
248
+ /* 2 */
249
+ background-image: none;
250
+ /* 2 */
251
+ }
252
+
253
+ /*
254
+ Use the modern Firefox focus style for all focusable elements.
255
+ */
256
+
257
+ :-moz-focusring {
258
+ outline: auto;
259
+ }
260
+
261
+ /*
262
+ Remove the additional :invalid styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
263
+ */
264
+
265
+ :-moz-ui-invalid {
266
+ box-shadow: none;
267
+ }
268
+
269
+ /*
270
+ Add the correct vertical alignment in Chrome and Firefox.
271
+ */
272
+
273
+ progress {
274
+ vertical-align: baseline;
275
+ }
276
+
277
+ /*
278
+ Correct the cursor style of increment and decrement buttons in Safari.
279
+ */
280
+
281
+ ::-webkit-inner-spin-button,
282
+ ::-webkit-outer-spin-button {
283
+ height: auto;
284
+ }
285
+
286
+ /*
287
+ 1. Correct the odd appearance in Chrome and Safari.
288
+ 2. Correct the outline style in Safari.
289
+ */
290
+
291
+ [type='search'] {
292
+ -webkit-appearance: textfield;
293
+ /* 1 */
294
+ outline-offset: -2px;
295
+ /* 2 */
296
+ }
297
+
298
+ /*
299
+ Remove the inner padding in Chrome and Safari on macOS.
300
+ */
301
+
302
+ ::-webkit-search-decoration {
303
+ -webkit-appearance: none;
304
+ }
305
+
306
+ /*
307
+ 1. Correct the inability to style clickable types in iOS and Safari.
308
+ 2. Change font properties to inherit in Safari.
309
+ */
310
+
311
+ ::-webkit-file-upload-button {
312
+ -webkit-appearance: button;
313
+ /* 1 */
314
+ font: inherit;
315
+ /* 2 */
316
+ }
317
+
318
+ /*
319
+ Add the correct display in Chrome and Safari.
320
+ */
321
+
322
+ summary {
323
+ display: list-item;
324
+ }
325
+
326
+ /*
327
+ Removes the default spacing and border for appropriate elements.
328
+ */
329
+
330
+ blockquote,
331
+ dl,
332
+ dd,
333
+ h1,
334
+ h2,
335
+ h3,
336
+ h4,
337
+ h5,
338
+ h6,
339
+ hr,
340
+ figure,
341
+ p,
342
+ pre {
343
+ margin: 0;
344
+ }
345
+
346
+ fieldset {
347
+ margin: 0;
348
+ padding: 0;
349
+ }
350
+
351
+ legend {
352
+ padding: 0;
353
+ }
354
+
355
+ ol,
356
+ ul,
357
+ menu {
358
+ list-style: none;
359
+ margin: 0;
360
+ padding: 0;
361
+ }
362
+
363
+ /*
364
+ Reset default styling for dialogs.
365
+ */
366
+
367
+ dialog {
368
+ padding: 0;
369
+ }
370
+
371
+ /*
372
+ Prevent resizing textareas horizontally by default.
373
+ */
374
+
375
+ textarea {
376
+ resize: vertical;
377
+ }
378
+
379
+ /*
380
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
381
+ 2. Set the default placeholder color to the user's configured gray 400 color.
382
+ */
383
+
384
+ input::-moz-placeholder,
385
+ textarea::-moz-placeholder {
386
+ opacity: 1;
387
+ /* 1 */
388
+ color: #9ca3af;
389
+ /* 2 */
390
+ }
391
+
392
+ input::placeholder,
393
+ textarea::placeholder {
394
+ opacity: 1;
395
+ /* 1 */
396
+ color: #9ca3af;
397
+ /* 2 */
398
+ }
399
+
400
+ /*
401
+ Set the default cursor for buttons.
402
+ */
403
+
404
+ button,
405
+ [role='button'] {
406
+ cursor: pointer;
407
+ }
408
+
409
+ /*
410
+ Make sure disabled buttons don't get the pointer cursor.
411
+ */
412
+
413
+ :disabled {
414
+ cursor: default;
415
+ }
416
+
417
+ /*
418
+ 1. Make replaced elements display: block by default. (https://github.com/mozdevs/cssremedy/issues/14)
419
+ 2. Add vertical-align: middle to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
420
+ This can trigger a poorly considered lint error in some tools but is included by design.
421
+ */
422
+
423
+ img,
424
+ svg,
425
+ video,
426
+ canvas,
427
+ audio,
428
+ iframe,
429
+ embed,
430
+ object {
431
+ display: block;
432
+ /* 1 */
433
+ vertical-align: middle;
434
+ /* 2 */
435
+ }
436
+
437
+ /*
438
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
439
+ */
440
+
441
+ img,
442
+ video {
443
+ max-width: 100%;
444
+ height: auto;
445
+ }
446
+
447
+ /* Make elements with the HTML hidden attribute stay hidden by default */
448
+
449
+ [hidden] {
450
+ display: none;
451
+ }
452
+
453
+ *,
454
+ ::before,
455
+ ::after {
456
+ --tw-border-spacing-x: 0;
457
+ --tw-border-spacing-y: 0;
458
+ --tw-translate-x: 0;
459
+ --tw-translate-y: 0;
460
+ --tw-rotate: 0;
461
+ --tw-skew-x: 0;
462
+ --tw-skew-y: 0;
463
+ --tw-scale-x: 1;
464
+ --tw-scale-y: 1;
465
+ --tw-pan-x: ;
466
+ --tw-pan-y: ;
467
+ --tw-pinch-zoom: ;
468
+ --tw-scroll-snap-strictness: proximity;
469
+ --tw-gradient-from-position: ;
470
+ --tw-gradient-via-position: ;
471
+ --tw-gradient-to-position: ;
472
+ --tw-ordinal: ;
473
+ --tw-slashed-zero: ;
474
+ --tw-numeric-figure: ;
475
+ --tw-numeric-spacing: ;
476
+ --tw-numeric-fraction: ;
477
+ --tw-ring-inset: ;
478
+ --tw-ring-offset-width: 0px;
479
+ --tw-ring-offset-color: #fff;
480
+ --tw-ring-color: rgb(59 130 246 / 0.5);
481
+ --tw-ring-offset-shadow: 0 0 #0000;
482
+ --tw-ring-shadow: 0 0 #0000;
483
+ --tw-shadow: 0 0 #0000;
484
+ --tw-shadow-colored: 0 0 #0000;
485
+ --tw-blur: ;
486
+ --tw-brightness: ;
487
+ --tw-contrast: ;
488
+ --tw-grayscale: ;
489
+ --tw-hue-rotate: ;
490
+ --tw-invert: ;
491
+ --tw-saturate: ;
492
+ --tw-sepia: ;
493
+ --tw-drop-shadow: ;
494
+ --tw-backdrop-blur: ;
495
+ --tw-backdrop-brightness: ;
496
+ --tw-backdrop-contrast: ;
497
+ --tw-backdrop-grayscale: ;
498
+ --tw-backdrop-hue-rotate: ;
499
+ --tw-backdrop-invert: ;
500
+ --tw-backdrop-opacity: ;
501
+ --tw-backdrop-saturate: ;
502
+ --tw-backdrop-sepia: ;
503
+ --tw-contain-size: ;
504
+ --tw-contain-layout: ;
505
+ --tw-contain-paint: ;
506
+ --tw-contain-style: ;
507
+ }
508
+
509
+ ::backdrop {
510
+ --tw-border-spacing-x: 0;
511
+ --tw-border-spacing-y: 0;
512
+ --tw-translate-x: 0;
513
+ --tw-translate-y: 0;
514
+ --tw-rotate: 0;
515
+ --tw-skew-x: 0;
516
+ --tw-skew-y: 0;
517
+ --tw-scale-x: 1;
518
+ --tw-scale-y: 1;
519
+ --tw-pan-x: ;
520
+ --tw-pan-y: ;
521
+ --tw-pinch-zoom: ;
522
+ --tw-scroll-snap-strictness: proximity;
523
+ --tw-gradient-from-position: ;
524
+ --tw-gradient-via-position: ;
525
+ --tw-gradient-to-position: ;
526
+ --tw-ordinal: ;
527
+ --tw-slashed-zero: ;
528
+ --tw-numeric-figure: ;
529
+ --tw-numeric-spacing: ;
530
+ --tw-numeric-fraction: ;
531
+ --tw-ring-inset: ;
532
+ --tw-ring-offset-width: 0px;
533
+ --tw-ring-offset-color: #fff;
534
+ --tw-ring-color: rgb(59 130 246 / 0.5);
535
+ --tw-ring-offset-shadow: 0 0 #0000;
536
+ --tw-ring-shadow: 0 0 #0000;
537
+ --tw-shadow: 0 0 #0000;
538
+ --tw-shadow-colored: 0 0 #0000;
539
+ --tw-blur: ;
540
+ --tw-brightness: ;
541
+ --tw-contrast: ;
542
+ --tw-grayscale: ;
543
+ --tw-hue-rotate: ;
544
+ --tw-invert: ;
545
+ --tw-saturate: ;
546
+ --tw-sepia: ;
547
+ --tw-drop-shadow: ;
548
+ --tw-backdrop-blur: ;
549
+ --tw-backdrop-brightness: ;
550
+ --tw-backdrop-contrast: ;
551
+ --tw-backdrop-grayscale: ;
552
+ --tw-backdrop-hue-rotate: ;
553
+ --tw-backdrop-invert: ;
554
+ --tw-backdrop-opacity: ;
555
+ --tw-backdrop-saturate: ;
556
+ --tw-backdrop-sepia: ;
557
+ --tw-contain-size: ;
558
+ --tw-contain-layout: ;
559
+ --tw-contain-paint: ;
560
+ --tw-contain-style: ;
561
+ }
562
+
563
+ .visible {
564
+ visibility: visible;
565
+ }
566
+
567
+ .collapse {
568
+ visibility: collapse;
569
+ }
570
+
571
+ .static {
572
+ position: static;
573
+ }
574
+
575
+ .absolute {
576
+ position: absolute;
577
+ }
578
+
579
+ .relative {
580
+ position: relative;
581
+ }
582
+
583
+ .-start-0 {
584
+ inset-inline-start: -0px;
585
+ }
586
+
587
+ .z-50 {
588
+ z-index: 50;
589
+ }
590
+
591
+ .m-0 {
592
+ margin: 0px;
593
+ }
594
+
595
+ .mr-4 {
596
+ margin-right: 1rem;
597
+ }
598
+
599
+ .block {
600
+ display: block;
601
+ }
602
+
603
+ .inline {
604
+ display: inline;
605
+ }
606
+
607
+ .flex {
608
+ display: flex;
609
+ }
610
+
611
+ .table {
612
+ display: table;
613
+ }
614
+
615
+ .grid {
616
+ display: grid;
617
+ }
618
+
619
+ .contents {
620
+ display: contents;
621
+ }
622
+
623
+ .hidden {
624
+ display: none;
625
+ }
626
+
627
+ .w-\\[100px\\] {
628
+ width: 100px;
629
+ }
630
+
631
+ .w-\\[480px\\] {
632
+ width: 480px;
633
+ }
634
+
635
+ .w-\\[580px\\] {
636
+ width: 580px;
637
+ }
638
+
639
+ .flex-grow {
640
+ flex-grow: 1;
641
+ }
642
+
643
+ .grow {
644
+ flex-grow: 1;
645
+ }
646
+
647
+ .border-collapse {
648
+ border-collapse: collapse;
649
+ }
650
+
651
+ .transform {
652
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y))
653
+ rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
654
+ scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
655
+ }
656
+
657
+ .cursor-pointer {
658
+ cursor: pointer;
659
+ }
660
+
661
+ .resize {
662
+ resize: both;
663
+ }
664
+
665
+ .flex-row {
666
+ flex-direction: row;
667
+ }
668
+
669
+ .flex-col {
670
+ flex-direction: column;
671
+ }
672
+
673
+ .items-start {
674
+ align-items: flex-start;
675
+ }
676
+
677
+ .items-center {
678
+ align-items: center;
679
+ }
680
+
681
+ .justify-end {
682
+ justify-content: flex-end;
683
+ }
684
+
685
+ .justify-between {
686
+ justify-content: space-between;
687
+ }
688
+
689
+ .rounded-full {
690
+ border-radius: 9999px;
691
+ }
692
+
693
+ .border {
694
+ border-width: 1px;
695
+ }
696
+
697
+ .bg-red-500 {
698
+ --tw-bg-opacity: 1;
699
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity));
700
+ }
701
+
702
+ .p-0 {
703
+ padding: 0px;
704
+ }
705
+
706
+ .p-1 {
707
+ padding: 0.25rem;
708
+ }
709
+
710
+ .p-2 {
711
+ padding: 0.5rem;
712
+ }
713
+
714
+ .p-4 {
715
+ padding: 1rem;
716
+ }
717
+
718
+ .px-1 {
719
+ padding-left: 0.25rem;
720
+ padding-right: 0.25rem;
721
+ }
722
+
723
+ .px-16 {
724
+ padding-left: 4rem;
725
+ padding-right: 4rem;
726
+ }
727
+
728
+ .px-2 {
729
+ padding-left: 0.5rem;
730
+ padding-right: 0.5rem;
731
+ }
732
+
733
+ .py-1 {
734
+ padding-top: 0.25rem;
735
+ padding-bottom: 0.25rem;
736
+ }
737
+
738
+ .py-2 {
739
+ padding-top: 0.5rem;
740
+ padding-bottom: 0.5rem;
741
+ }
742
+
743
+ .py-4 {
744
+ padding-top: 1rem;
745
+ padding-bottom: 1rem;
746
+ }
747
+
748
+ .py-8 {
749
+ padding-top: 2rem;
750
+ padding-bottom: 2rem;
751
+ }
752
+
753
+ .pb-2 {
754
+ padding-bottom: 0.5rem;
755
+ }
756
+
757
+ .pl-1 {
758
+ padding-left: 0.25rem;
759
+ }
760
+
761
+ .pl-11 {
762
+ padding-left: 2.75rem;
763
+ }
764
+
765
+ .pl-2 {
766
+ padding-left: 0.5rem;
767
+ }
768
+
769
+ .pl-4 {
770
+ padding-left: 1rem;
771
+ }
772
+
773
+ .pl-8 {
774
+ padding-left: 2rem;
775
+ }
776
+
777
+ .pr-1 {
778
+ padding-right: 0.25rem;
779
+ }
780
+
781
+ .text-left {
782
+ text-align: left;
783
+ }
784
+
785
+ .text-center {
786
+ text-align: center;
787
+ }
788
+
789
+ .text-right {
790
+ text-align: right;
791
+ }
792
+
793
+ .text-justify {
794
+ text-align: justify;
795
+ }
796
+
797
+ .align-top {
798
+ vertical-align: top;
799
+ }
800
+
801
+ .align-middle {
802
+ vertical-align: middle;
803
+ }
804
+
805
+ .text-base {
806
+ font-size: 1rem;
807
+ line-height: 1.5rem;
808
+ }
809
+
810
+ .text-sm {
811
+ font-size: 0.875rem;
812
+ line-height: 1.25rem;
813
+ }
814
+
815
+ .text-xl {
816
+ font-size: 1.25rem;
817
+ line-height: 1.75rem;
818
+ }
819
+
820
+ .text-xs {
821
+ font-size: 0.75rem;
822
+ line-height: 1rem;
823
+ }
824
+
825
+ .font-bold {
826
+ font-weight: 700;
827
+ }
828
+
829
+ .font-semibold {
830
+ font-weight: 600;
831
+ }
832
+
833
+ .text-white {
834
+ --tw-text-opacity: 1;
835
+ color: rgb(255 255 255 / var(--tw-text-opacity));
836
+ }
837
+
838
+ .underline {
839
+ text-decoration-line: underline;
840
+ }
841
+
842
+ .outline {
843
+ outline-style: solid;
844
+ }
845
+
846
+ .filter {
847
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
848
+ var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert)
849
+ var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
850
+ }
851
+
852
+ .transition {
853
+ transition-property: color, background-color, border-color,
854
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
855
+ filter, -webkit-backdrop-filter;
856
+ transition-property: color, background-color, border-color,
857
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
858
+ filter, backdrop-filter;
859
+ transition-property: color, background-color, border-color,
860
+ text-decoration-color, fill, stroke, opacity, box-shadow, transform,
861
+ filter, backdrop-filter, -webkit-backdrop-filter;
862
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
863
+ transition-duration: 150ms;
864
+ }
865
+
866
+ @media (min-width: 640px) {
867
+ .sm\\:flex-col {
868
+ flex-direction: column;
869
+ }
870
+ }
871
+
872
+ @media (min-width: 768px) {
873
+ .md\\:flex-col {
874
+ flex-direction: column;
875
+ }
876
+ }
877
+
878
+ @media (min-width: 1024px) {
879
+ .lg\\:flex-col {
880
+ flex-direction: column;
881
+ }
882
+ }
883
+
884
+ @media (min-width: 1280px) {
885
+ .xl\\:flex-row {
886
+ flex-direction: row;
887
+ }
888
+ }
889
+ `;
890
+ //# sourceMappingURL=tw.js.map