@asyncapi/react-component 1.0.0-next.23 → 1.0.0-next.27

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 (43) hide show
  1. package/browser/index.js +6 -6
  2. package/browser/standalone/index.js +8 -8
  3. package/browser/standalone/without-parser.js +8 -8
  4. package/browser/without-parser.js +4 -4
  5. package/lib/cjs/components/Bindings.js +1 -1
  6. package/lib/cjs/components/Bindings.js.map +1 -1
  7. package/lib/cjs/components/Extensions.js +2 -2
  8. package/lib/cjs/components/Extensions.js.map +1 -1
  9. package/lib/cjs/containers/AsyncApi/Layout.js +22 -15
  10. package/lib/cjs/containers/AsyncApi/Layout.js.map +1 -1
  11. package/lib/cjs/containers/Operations/Operation.js +42 -25
  12. package/lib/cjs/containers/Operations/Operation.js.map +1 -1
  13. package/lib/cjs/containers/Servers/ServerSecurity.js +8 -4
  14. package/lib/cjs/containers/Servers/ServerSecurity.js.map +1 -1
  15. package/lib/cjs/helpers/schema.js +34 -23
  16. package/lib/cjs/helpers/schema.js.map +1 -1
  17. package/lib/cjs/helpers/specification.js +3 -0
  18. package/lib/cjs/helpers/specification.js.map +1 -1
  19. package/lib/esm/components/Bindings.js +1 -1
  20. package/lib/esm/components/Bindings.js.map +1 -1
  21. package/lib/esm/components/Extensions.js +2 -2
  22. package/lib/esm/components/Extensions.js.map +1 -1
  23. package/lib/esm/containers/AsyncApi/Layout.js +22 -15
  24. package/lib/esm/containers/AsyncApi/Layout.js.map +1 -1
  25. package/lib/esm/containers/Operations/Operation.js +40 -24
  26. package/lib/esm/containers/Operations/Operation.js.map +1 -1
  27. package/lib/esm/containers/Servers/ServerSecurity.js +8 -4
  28. package/lib/esm/containers/Servers/ServerSecurity.js.map +1 -1
  29. package/lib/esm/helpers/schema.js +34 -23
  30. package/lib/esm/helpers/schema.js.map +1 -1
  31. package/lib/esm/helpers/specification.js +5 -2
  32. package/lib/esm/helpers/specification.js.map +1 -1
  33. package/lib/types/components/Bindings.d.ts.map +1 -1
  34. package/lib/types/components/Extensions.d.ts.map +1 -1
  35. package/lib/types/containers/AsyncApi/Layout.d.ts.map +1 -1
  36. package/lib/types/containers/Operations/Operation.d.ts +1 -0
  37. package/lib/types/containers/Operations/Operation.d.ts.map +1 -1
  38. package/lib/types/helpers/schema.d.ts +3 -1
  39. package/lib/types/helpers/schema.d.ts.map +1 -1
  40. package/lib/types/helpers/specification.d.ts.map +1 -1
  41. package/package.json +3 -2
  42. package/styles/default.css +370 -370
  43. package/styles/default.min.css +2 -2
@@ -27,7 +27,7 @@ SOFTWARE.
27
27
 
28
28
  */
29
29
 
30
- .hljs {
30
+ .aui-root .hljs {
31
31
  display: block;
32
32
  overflow-x: auto;
33
33
  padding: 0.5em;
@@ -37,180 +37,180 @@ SOFTWARE.
37
37
 
38
38
  /* General Purpose */
39
39
 
40
- .hljs-keyword {
40
+ .aui-root .hljs-keyword {
41
41
  color: #c792ea;
42
42
  font-style: italic;
43
43
  }
44
44
 
45
- .hljs-built_in {
45
+ .aui-root .hljs-built_in {
46
46
  color: #addb67;
47
47
  font-style: italic;
48
48
  }
49
49
 
50
- .hljs-type {
50
+ .aui-root .hljs-type {
51
51
  color: #82aaff;
52
52
  }
53
53
 
54
- .hljs-literal {
54
+ .aui-root .hljs-literal {
55
55
  color: #ff5874;
56
56
  }
57
57
 
58
- .hljs-number {
58
+ .aui-root .hljs-number {
59
59
  color: #F78C6C;
60
60
  }
61
61
 
62
- .hljs-regexp {
62
+ .aui-root .hljs-regexp {
63
63
  color: #5ca7e4;
64
64
  }
65
65
 
66
- .hljs-string {
66
+ .aui-root .hljs-string {
67
67
  color: #ecc48d;
68
68
  }
69
69
 
70
- .hljs-subst {
70
+ .aui-root .hljs-subst {
71
71
  color: #d3423e;
72
72
  }
73
73
 
74
- .hljs-symbol {
74
+ .aui-root .hljs-symbol {
75
75
  color: #82aaff;
76
76
  }
77
77
 
78
- .hljs-class {
78
+ .aui-root .hljs-class {
79
79
  color: #ffcb8b;
80
80
  }
81
81
 
82
- .hljs-function {
82
+ .aui-root .hljs-function {
83
83
  color: #82AAFF;
84
84
  }
85
85
 
86
- .hljs-title {
86
+ .aui-root .hljs-title {
87
87
  color: #DCDCAA;
88
88
  font-style: italic;
89
89
  }
90
90
 
91
- .hljs-params {
91
+ .aui-root .hljs-params {
92
92
  color: #7fdbca;
93
93
  }
94
94
 
95
95
  /* Meta */
96
96
 
97
- .hljs-comment {
97
+ .aui-root .hljs-comment {
98
98
  color: #637777;
99
99
  font-style: italic;
100
100
  }
101
101
 
102
- .hljs-doctag {
102
+ .aui-root .hljs-doctag {
103
103
  color: #7fdbca;
104
104
  }
105
105
 
106
- .hljs-meta {
106
+ .aui-root .hljs-meta {
107
107
  color: #82aaff;
108
108
  }
109
109
 
110
- .hljs-meta-keyword {
110
+ .aui-root .hljs-meta-keyword {
111
111
  color: #82aaff;
112
112
  }
113
113
 
114
- .hljs-meta-string {
114
+ .aui-root .hljs-meta-string {
115
115
  color: #ecc48d;
116
116
  }
117
117
 
118
118
  /* Tags, attributes, config */
119
119
 
120
- .hljs-section {
120
+ .aui-root .hljs-section {
121
121
  color: #82b1ff;
122
122
  }
123
123
 
124
- .hljs-tag,
125
- .hljs-name,
126
- .hljs-builtin-name {
124
+ .aui-root .hljs-tag,
125
+ .aui-root .hljs-name,
126
+ .aui-root .hljs-builtin-name {
127
127
  color: #7fdbca;
128
128
  }
129
129
 
130
- .hljs-attr {
130
+ .aui-root .hljs-attr {
131
131
  color: #7fdbca;
132
132
  }
133
133
 
134
- .hljs-attribute {
134
+ .aui-root .hljs-attribute {
135
135
  color: #80cbc4;
136
136
  }
137
137
 
138
- .hljs-variable {
138
+ .aui-root .hljs-variable {
139
139
  color: #addb67;
140
140
  }
141
141
 
142
142
  /* Markup */
143
143
 
144
- .hljs-bullet {
144
+ .aui-root .hljs-bullet {
145
145
  color: #d9f5dd;
146
146
  }
147
147
 
148
- .hljs-code {
148
+ .aui-root .hljs-code {
149
149
  color: #80CBC4;
150
150
  }
151
151
 
152
- .hljs-emphasis {
152
+ .aui-root .hljs-emphasis {
153
153
  color: #c792ea;
154
154
  font-style: italic;
155
155
  }
156
156
 
157
- .hljs-strong {
157
+ .aui-root .hljs-strong {
158
158
  color: #addb67;
159
159
  font-weight: bold;
160
160
  }
161
161
 
162
- .hljs-formula {
162
+ .aui-root .hljs-formula {
163
163
  color: #c792ea;
164
164
  }
165
165
 
166
- .hljs-link {
166
+ .aui-root .hljs-link {
167
167
  color: #ff869a;
168
168
  }
169
169
 
170
- .hljs-quote {
170
+ .aui-root .hljs-quote {
171
171
  color: #697098;
172
172
  font-style: italic;
173
173
  }
174
174
 
175
175
  /* CSS */
176
176
 
177
- .hljs-selector-tag {
177
+ .aui-root .hljs-selector-tag {
178
178
  color: #ff6363;
179
179
  }
180
180
 
181
- .hljs-selector-id {
181
+ .aui-root .hljs-selector-id {
182
182
  color: #fad430;
183
183
  }
184
184
 
185
- .hljs-selector-class {
185
+ .aui-root .hljs-selector-class {
186
186
  color: #addb67;
187
187
  font-style: italic;
188
188
  }
189
189
 
190
- .hljs-selector-attr,
191
- .hljs-selector-pseudo {
190
+ .aui-root .hljs-selector-attr,
191
+ .aui-root .hljs-selector-pseudo {
192
192
  color: #c792ea;
193
193
  font-style: italic;
194
194
  }
195
195
 
196
196
  /* Templates */
197
197
 
198
- .hljs-template-tag {
198
+ .aui-root .hljs-template-tag {
199
199
  color: #c792ea;
200
200
  }
201
201
 
202
- .hljs-template-variable {
202
+ .aui-root .hljs-template-variable {
203
203
  color: #addb67;
204
204
  }
205
205
 
206
206
  /* diff */
207
207
 
208
- .hljs-addition {
208
+ .aui-root .hljs-addition {
209
209
  color: #addb67ff;
210
210
  font-style: italic;
211
211
  }
212
212
 
213
- .hljs-deletion {
213
+ .aui-root .hljs-deletion {
214
214
  color: #EF535090;
215
215
  font-style: italic;
216
216
  }
@@ -228,9 +228,9 @@ Document
228
228
  Use a better box model (opinionated).
229
229
  */
230
230
 
231
- *,
232
- ::before,
233
- ::after {
231
+ .aui-root *,
232
+ .aui-root ::before,
233
+ .aui-root ::after {
234
234
  box-sizing: border-box;
235
235
  }
236
236
 
@@ -238,7 +238,7 @@ Use a better box model (opinionated).
238
238
  Use a more readable tab size (opinionated).
239
239
  */
240
240
 
241
- html {
241
+ .aui-root html {
242
242
  -moz-tab-size: 4;
243
243
  -o-tab-size: 4;
244
244
  tab-size: 4;
@@ -249,7 +249,7 @@ html {
249
249
  2. Prevent adjustments of font size after orientation changes in iOS.
250
250
  */
251
251
 
252
- html {
252
+ .aui-root html {
253
253
  line-height: 1.15; /* 1 */
254
254
  -webkit-text-size-adjust: 100%; /* 2 */
255
255
  }
@@ -263,7 +263,7 @@ Sections
263
263
  Remove the margin in all browsers.
264
264
  */
265
265
 
266
- body {
266
+ .aui-root body {
267
267
  margin: 0;
268
268
  }
269
269
 
@@ -271,7 +271,7 @@ body {
271
271
  Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
272
272
  */
273
273
 
274
- body {
274
+ .aui-root body {
275
275
  font-family:
276
276
  system-ui,
277
277
  -apple-system, /* Firefox supports this but not yet `system-ui` */
@@ -294,7 +294,7 @@ Grouping content
294
294
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
295
295
  */
296
296
 
297
- hr {
297
+ .aui-root hr {
298
298
  height: 0; /* 1 */
299
299
  color: inherit; /* 2 */
300
300
  }
@@ -308,7 +308,7 @@ Text-level semantics
308
308
  Add the correct text decoration in Chrome, Edge, and Safari.
309
309
  */
310
310
 
311
- abbr[title] {
311
+ .aui-root abbr[title] {
312
312
  -webkit-text-decoration: underline dotted;
313
313
  text-decoration: underline dotted;
314
314
  }
@@ -317,8 +317,8 @@ abbr[title] {
317
317
  Add the correct font weight in Edge and Safari.
318
318
  */
319
319
 
320
- b,
321
- strong {
320
+ .aui-root b,
321
+ .aui-root strong {
322
322
  font-weight: bolder;
323
323
  }
324
324
 
@@ -327,10 +327,10 @@ strong {
327
327
  2. Correct the odd 'em' font sizing in all browsers.
328
328
  */
329
329
 
330
- code,
331
- kbd,
332
- samp,
333
- pre {
330
+ .aui-root code,
331
+ .aui-root kbd,
332
+ .aui-root samp,
333
+ .aui-root pre {
334
334
  font-family:
335
335
  ui-monospace,
336
336
  SFMono-Regular,
@@ -345,7 +345,7 @@ pre {
345
345
  Add the correct font size in all browsers.
346
346
  */
347
347
 
348
- small {
348
+ .aui-root small {
349
349
  font-size: 80%;
350
350
  }
351
351
 
@@ -353,19 +353,19 @@ small {
353
353
  Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
354
354
  */
355
355
 
356
- sub,
357
- sup {
356
+ .aui-root sub,
357
+ .aui-root sup {
358
358
  font-size: 75%;
359
359
  line-height: 0;
360
360
  position: relative;
361
361
  vertical-align: baseline;
362
362
  }
363
363
 
364
- sub {
364
+ .aui-root sub {
365
365
  bottom: -0.25em;
366
366
  }
367
367
 
368
- sup {
368
+ .aui-root sup {
369
369
  top: -0.5em;
370
370
  }
371
371
 
@@ -379,7 +379,7 @@ Tabular data
379
379
  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)
380
380
  */
381
381
 
382
- table {
382
+ .aui-root table {
383
383
  text-indent: 0; /* 1 */
384
384
  border-color: inherit; /* 2 */
385
385
  }
@@ -394,11 +394,11 @@ Forms
394
394
  2. Remove the margin in Firefox and Safari.
395
395
  */
396
396
 
397
- button,
398
- input,
399
- optgroup,
400
- select,
401
- textarea {
397
+ .aui-root button,
398
+ .aui-root input,
399
+ .aui-root optgroup,
400
+ .aui-root select,
401
+ .aui-root textarea {
402
402
  font-family: inherit; /* 1 */
403
403
  font-size: 100%; /* 1 */
404
404
  line-height: 1.15; /* 1 */
@@ -410,8 +410,8 @@ Remove the inheritance of text transform in Edge and Firefox.
410
410
  1. Remove the inheritance of text transform in Firefox.
411
411
  */
412
412
 
413
- button,
414
- select { /* 1 */
413
+ .aui-root button,
414
+ .aui-root select { /* 1 */
415
415
  text-transform: none;
416
416
  }
417
417
 
@@ -419,8 +419,8 @@ select { /* 1 */
419
419
  Correct the inability to style clickable types in iOS and Safari.
420
420
  */
421
421
 
422
- button,
423
- [type='button'] {
422
+ .aui-root button,
423
+ .aui-root [type='button'] {
424
424
  -webkit-appearance: button;
425
425
  }
426
426
 
@@ -441,7 +441,7 @@ See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d4
441
441
  Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
442
442
  */
443
443
 
444
- legend {
444
+ .aui-root legend {
445
445
  padding: 0;
446
446
  }
447
447
 
@@ -449,7 +449,7 @@ legend {
449
449
  Add the correct vertical alignment in Chrome and Firefox.
450
450
  */
451
451
 
452
- progress {
452
+ .aui-root progress {
453
453
  vertical-align: baseline;
454
454
  }
455
455
 
@@ -480,7 +480,7 @@ Interactive
480
480
  Add the correct display in Chrome and Safari.
481
481
  */
482
482
 
483
- summary {
483
+ .aui-root summary {
484
484
  display: list-item;
485
485
  }
486
486
 
@@ -494,34 +494,34 @@ summary {
494
494
  * Removes the default spacing and border for appropriate elements.
495
495
  */
496
496
 
497
- blockquote,
498
- dl,
499
- dd,
500
- h1,
501
- h2,
502
- h3,
503
- h4,
504
- h5,
505
- h6,
506
- hr,
507
- figure,
508
- p,
509
- pre {
497
+ .aui-root blockquote,
498
+ .aui-root dl,
499
+ .aui-root dd,
500
+ .aui-root h1,
501
+ .aui-root h2,
502
+ .aui-root h3,
503
+ .aui-root h4,
504
+ .aui-root h5,
505
+ .aui-root h6,
506
+ .aui-root hr,
507
+ .aui-root figure,
508
+ .aui-root p,
509
+ .aui-root pre {
510
510
  margin: 0;
511
511
  }
512
512
 
513
- button {
513
+ .aui-root button {
514
514
  background-color: transparent;
515
515
  background-image: none;
516
516
  }
517
517
 
518
- fieldset {
518
+ .aui-root fieldset {
519
519
  margin: 0;
520
520
  padding: 0;
521
521
  }
522
522
 
523
- ol,
524
- ul {
523
+ .aui-root ol,
524
+ .aui-root ul {
525
525
  list-style: none;
526
526
  margin: 0;
527
527
  padding: 0;
@@ -538,7 +538,7 @@ ul {
538
538
  * to override it to ensure consistency even when using the default theme.
539
539
  */
540
540
 
541
- html {
541
+ .aui-root html {
542
542
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
543
543
  line-height: 1.5; /* 2 */
544
544
  }
@@ -548,7 +548,7 @@ html {
548
548
  * a class directly on the `html` element.
549
549
  */
550
550
 
551
- body {
551
+ .aui-root body {
552
552
  font-family: inherit;
553
553
  line-height: inherit;
554
554
  }
@@ -579,9 +579,9 @@ body {
579
579
  * https://github.com/tailwindcss/tailwindcss/pull/116
580
580
  */
581
581
 
582
- *,
583
- ::before,
584
- ::after {
582
+ .aui-root *,
583
+ .aui-root ::before,
584
+ .aui-root ::after {
585
585
  box-sizing: border-box; /* 1 */
586
586
  border-width: 0; /* 2 */
587
587
  border-style: solid; /* 2 */
@@ -592,7 +592,7 @@ body {
592
592
  * Ensure horizontal rules are visible by default
593
593
  */
594
594
 
595
- hr {
595
+ .aui-root hr {
596
596
  border-top-width: 1px;
597
597
  }
598
598
 
@@ -606,31 +606,31 @@ hr {
606
606
  * https://github.com/tailwindcss/tailwindcss/issues/362
607
607
  */
608
608
 
609
- img {
609
+ .aui-root img {
610
610
  border-style: solid;
611
611
  }
612
612
 
613
- textarea {
613
+ .aui-root textarea {
614
614
  resize: vertical;
615
615
  }
616
616
 
617
- input::-moz-placeholder, textarea::-moz-placeholder {
617
+ .aui-root input::-moz-placeholder, .aui-root textarea::-moz-placeholder {
618
618
  opacity: 1;
619
619
  color: #cbd5e0;
620
620
  }
621
621
 
622
- input:-ms-input-placeholder, textarea:-ms-input-placeholder {
622
+ .aui-root input:-ms-input-placeholder, .aui-root textarea:-ms-input-placeholder {
623
623
  opacity: 1;
624
624
  color: #cbd5e0;
625
625
  }
626
626
 
627
- input::placeholder,
628
- textarea::placeholder {
627
+ .aui-root input::placeholder,
628
+ .aui-root textarea::placeholder {
629
629
  opacity: 1;
630
630
  color: #cbd5e0;
631
631
  }
632
632
 
633
- button {
633
+ .aui-root button {
634
634
  cursor: pointer;
635
635
  }
636
636
 
@@ -642,16 +642,16 @@ button {
642
642
  * outline in Firefox by default.
643
643
  */
644
644
 
645
- table {
645
+ .aui-root table {
646
646
  border-collapse: collapse;
647
647
  }
648
648
 
649
- h1,
650
- h2,
651
- h3,
652
- h4,
653
- h5,
654
- h6 {
649
+ .aui-root h1,
650
+ .aui-root h2,
651
+ .aui-root h3,
652
+ .aui-root h4,
653
+ .aui-root h5,
654
+ .aui-root h6 {
655
655
  font-size: inherit;
656
656
  font-weight: inherit;
657
657
  }
@@ -661,7 +661,7 @@ h6 {
661
661
  * opt-out.
662
662
  */
663
663
 
664
- a {
664
+ .aui-root a {
665
665
  color: inherit;
666
666
  text-decoration: inherit;
667
667
  }
@@ -674,11 +674,11 @@ a {
674
674
  * normalize.css.
675
675
  */
676
676
 
677
- button,
678
- input,
679
- optgroup,
680
- select,
681
- textarea {
677
+ .aui-root button,
678
+ .aui-root input,
679
+ .aui-root optgroup,
680
+ .aui-root select,
681
+ .aui-root textarea {
682
682
  padding: 0;
683
683
  line-height: inherit;
684
684
  color: inherit;
@@ -691,10 +691,10 @@ textarea {
691
691
  * 'mono' font family.
692
692
  */
693
693
 
694
- pre,
695
- code,
696
- kbd,
697
- samp {
694
+ .aui-root pre,
695
+ .aui-root code,
696
+ .aui-root kbd,
697
+ .aui-root samp {
698
698
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
699
699
  }
700
700
 
@@ -715,14 +715,14 @@ samp {
715
715
  * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
716
716
  */
717
717
 
718
- img,
719
- svg,
720
- video,
721
- canvas,
722
- audio,
723
- iframe,
724
- embed,
725
- object {
718
+ .aui-root img,
719
+ .aui-root svg,
720
+ .aui-root video,
721
+ .aui-root canvas,
722
+ .aui-root audio,
723
+ .aui-root iframe,
724
+ .aui-root embed,
725
+ .aui-root object {
726
726
  display: block; /* 1 */
727
727
  vertical-align: middle; /* 2 */
728
728
  }
@@ -734,8 +734,8 @@ object {
734
734
  * https://github.com/mozdevs/cssremedy/issues/14
735
735
  */
736
736
 
737
- img,
738
- video {
737
+ .aui-root img,
738
+ .aui-root video {
739
739
  max-width: 100%;
740
740
  height: auto;
741
741
  }
@@ -744,21 +744,21 @@ video {
744
744
  * Ensure the default browser behavior of the `hidden` attribute.
745
745
  */
746
746
 
747
- [hidden] {
747
+ .aui-root [hidden] {
748
748
  display: none;
749
749
  }
750
750
 
751
- *, ::before, ::after{
751
+ .aui-root *, .aui-root ::before, .aui-root ::after{
752
752
  --tw-border-opacity: 1;
753
753
  border-color: rgba(203, 213, 224, var(--tw-border-opacity));
754
754
  }
755
755
 
756
- .prose{
756
+ .aui-root .prose{
757
757
  color: #4a5568;
758
758
  max-width: 65ch;
759
759
  }
760
760
 
761
- .prose [class~="lead"]{
761
+ .aui-root .prose [class~="lead"]{
762
762
  color: #718096;
763
763
  font-size: 1.25em;
764
764
  line-height: 1.6;
@@ -766,43 +766,43 @@ video {
766
766
  margin-bottom: 1.2em;
767
767
  }
768
768
 
769
- .prose a{
769
+ .aui-root .prose a{
770
770
  color: #1a202c;
771
771
  text-decoration: underline;
772
772
  font-weight: 500;
773
773
  }
774
774
 
775
- .prose strong{
775
+ .aui-root .prose strong{
776
776
  color: #1a202c;
777
777
  font-weight: 600;
778
778
  }
779
779
 
780
- .prose ol[type="a"]{
780
+ .aui-root .prose ol[type="a"]{
781
781
  --list-counter-style: lower-alpha;
782
782
  }
783
783
 
784
- .prose ol[type="a" s]{
784
+ .aui-root .prose ol[type="a" s]{
785
785
  --list-counter-style: lower-alpha;
786
786
  }
787
787
 
788
- .prose ol[type="i"]{
788
+ .aui-root .prose ol[type="i"]{
789
789
  --list-counter-style: lower-roman;
790
790
  }
791
791
 
792
- .prose ol[type="i" s]{
792
+ .aui-root .prose ol[type="i" s]{
793
793
  --list-counter-style: lower-roman;
794
794
  }
795
795
 
796
- .prose ol[type="1"]{
796
+ .aui-root .prose ol[type="1"]{
797
797
  --list-counter-style: decimal;
798
798
  }
799
799
 
800
- .prose ol > li{
800
+ .aui-root .prose ol > li{
801
801
  position: relative;
802
802
  padding-left: 1.75em;
803
803
  }
804
804
 
805
- .prose ol > li::before{
805
+ .aui-root .prose ol > li::before{
806
806
  content: counter(list-item, var(--list-counter-style, decimal)) ".";
807
807
  position: absolute;
808
808
  font-weight: 400;
@@ -810,12 +810,12 @@ video {
810
810
  left: 0;
811
811
  }
812
812
 
813
- .prose ul > li{
813
+ .aui-root .prose ul > li{
814
814
  position: relative;
815
815
  padding-left: 1.75em;
816
816
  }
817
817
 
818
- .prose ul > li::before{
818
+ .aui-root .prose ul > li::before{
819
819
  content: "";
820
820
  position: absolute;
821
821
  background-color: #e2e8f0;
@@ -826,14 +826,14 @@ video {
826
826
  left: 0.25em;
827
827
  }
828
828
 
829
- .prose hr{
829
+ .aui-root .prose hr{
830
830
  border-color: #edf2f7;
831
831
  border-top-width: 1px;
832
832
  margin-top: 3em;
833
833
  margin-bottom: 3em;
834
834
  }
835
835
 
836
- .prose blockquote{
836
+ .aui-root .prose blockquote{
837
837
  font-weight: 500;
838
838
  font-style: italic;
839
839
  color: #1a202c;
@@ -845,15 +845,15 @@ video {
845
845
  padding-left: 1em;
846
846
  }
847
847
 
848
- .prose blockquote p:first-of-type::before{
848
+ .aui-root .prose blockquote p:first-of-type::before{
849
849
  content: open-quote;
850
850
  }
851
851
 
852
- .prose blockquote p:last-of-type::after{
852
+ .aui-root .prose blockquote p:last-of-type::after{
853
853
  content: close-quote;
854
854
  }
855
855
 
856
- .prose h1{
856
+ .aui-root .prose h1{
857
857
  color: #1a202c;
858
858
  font-weight: 800;
859
859
  font-size: 2.25em;
@@ -862,7 +862,7 @@ video {
862
862
  line-height: 1.1111111;
863
863
  }
864
864
 
865
- .prose h2{
865
+ .aui-root .prose h2{
866
866
  color: #1a202c;
867
867
  font-weight: 700;
868
868
  font-size: 1.5em;
@@ -871,7 +871,7 @@ video {
871
871
  line-height: 1.3333333;
872
872
  }
873
873
 
874
- .prose h3{
874
+ .aui-root .prose h3{
875
875
  color: #1a202c;
876
876
  font-weight: 600;
877
877
  font-size: 1.25em;
@@ -880,7 +880,7 @@ video {
880
880
  line-height: 1.6;
881
881
  }
882
882
 
883
- .prose h4{
883
+ .aui-root .prose h4{
884
884
  color: #1a202c;
885
885
  font-weight: 600;
886
886
  margin-top: 1.5em;
@@ -888,32 +888,32 @@ video {
888
888
  line-height: 1.5;
889
889
  }
890
890
 
891
- .prose figure figcaption{
891
+ .aui-root .prose figure figcaption{
892
892
  color: #a0aec0;
893
893
  font-size: 0.875em;
894
894
  line-height: 1.4285714;
895
895
  margin-top: 0.8571429em;
896
896
  }
897
897
 
898
- .prose code{
898
+ .aui-root .prose code{
899
899
  color: #1a202c;
900
900
  font-weight: 600;
901
901
  font-size: 0.875em;
902
902
  }
903
903
 
904
- .prose code::before{
904
+ .aui-root .prose code::before{
905
905
  content: "`";
906
906
  }
907
907
 
908
- .prose code::after{
908
+ .aui-root .prose code::after{
909
909
  content: "`";
910
910
  }
911
911
 
912
- .prose a code{
912
+ .aui-root .prose a code{
913
913
  color: #1a202c;
914
914
  }
915
915
 
916
- .prose pre{
916
+ .aui-root .prose pre{
917
917
  color: #edf2f7;
918
918
  background-color: #1a202c;
919
919
  overflow-x: auto;
@@ -928,7 +928,7 @@ video {
928
928
  padding-left: 1.1428571em;
929
929
  }
930
930
 
931
- .prose pre code{
931
+ .aui-root .prose pre code{
932
932
  background-color: transparent;
933
933
  border-width: 0;
934
934
  border-radius: 0;
@@ -940,15 +940,15 @@ video {
940
940
  line-height: inherit;
941
941
  }
942
942
 
943
- .prose pre code::before{
943
+ .aui-root .prose pre code::before{
944
944
  content: none;
945
945
  }
946
946
 
947
- .prose pre code::after{
947
+ .aui-root .prose pre code::after{
948
948
  content: none;
949
949
  }
950
950
 
951
- .prose table{
951
+ .aui-root .prose table{
952
952
  width: 100%;
953
953
  table-layout: auto;
954
954
  text-align: left;
@@ -958,30 +958,30 @@ video {
958
958
  line-height: 1.7142857;
959
959
  }
960
960
 
961
- .prose thead{
961
+ .aui-root .prose thead{
962
962
  color: #1a202c;
963
963
  font-weight: 600;
964
964
  border-bottom-width: 1px;
965
965
  border-bottom-color: #e2e8f0;
966
966
  }
967
967
 
968
- .prose thead th{
968
+ .aui-root .prose thead th{
969
969
  vertical-align: bottom;
970
970
  padding-right: 0.5714286em;
971
971
  padding-bottom: 0.5714286em;
972
972
  padding-left: 0.5714286em;
973
973
  }
974
974
 
975
- .prose tbody tr{
975
+ .aui-root .prose tbody tr{
976
976
  border-bottom-width: 1px;
977
977
  border-bottom-color: #edf2f7;
978
978
  }
979
979
 
980
- .prose tbody tr:last-child{
980
+ .aui-root .prose tbody tr:last-child{
981
981
  border-bottom-width: 0;
982
982
  }
983
983
 
984
- .prose tbody td{
984
+ .aui-root .prose tbody td{
985
985
  vertical-align: top;
986
986
  padding-top: 0.5714286em;
987
987
  padding-right: 0.5714286em;
@@ -989,136 +989,136 @@ video {
989
989
  padding-left: 0.5714286em;
990
990
  }
991
991
 
992
- .prose{
992
+ .aui-root .prose{
993
993
  font-size: 1rem;
994
994
  line-height: 1.75;
995
995
  }
996
996
 
997
- .prose p{
997
+ .aui-root .prose p{
998
998
  margin-top: 1.25em;
999
999
  margin-bottom: 1.25em;
1000
1000
  }
1001
1001
 
1002
- .prose img{
1002
+ .aui-root .prose img{
1003
1003
  margin-top: 2em;
1004
1004
  margin-bottom: 2em;
1005
1005
  }
1006
1006
 
1007
- .prose video{
1007
+ .aui-root .prose video{
1008
1008
  margin-top: 2em;
1009
1009
  margin-bottom: 2em;
1010
1010
  }
1011
1011
 
1012
- .prose figure{
1012
+ .aui-root .prose figure{
1013
1013
  margin-top: 2em;
1014
1014
  margin-bottom: 2em;
1015
1015
  }
1016
1016
 
1017
- .prose figure > *{
1017
+ .aui-root .prose figure > *{
1018
1018
  margin-top: 0;
1019
1019
  margin-bottom: 0;
1020
1020
  }
1021
1021
 
1022
- .prose h2 code{
1022
+ .aui-root .prose h2 code{
1023
1023
  font-size: 0.875em;
1024
1024
  }
1025
1025
 
1026
- .prose h3 code{
1026
+ .aui-root .prose h3 code{
1027
1027
  font-size: 0.9em;
1028
1028
  }
1029
1029
 
1030
- .prose ol{
1030
+ .aui-root .prose ol{
1031
1031
  margin-top: 1.25em;
1032
1032
  margin-bottom: 1.25em;
1033
1033
  }
1034
1034
 
1035
- .prose ul{
1035
+ .aui-root .prose ul{
1036
1036
  margin-top: 1.25em;
1037
1037
  margin-bottom: 1.25em;
1038
1038
  }
1039
1039
 
1040
- .prose li{
1040
+ .aui-root .prose li{
1041
1041
  margin-top: 0.5em;
1042
1042
  margin-bottom: 0.5em;
1043
1043
  }
1044
1044
 
1045
- .prose > ul > li p{
1045
+ .aui-root .prose > ul > li p{
1046
1046
  margin-top: 0.75em;
1047
1047
  margin-bottom: 0.75em;
1048
1048
  }
1049
1049
 
1050
- .prose > ul > li > *:first-child{
1050
+ .aui-root .prose > ul > li > *:first-child{
1051
1051
  margin-top: 1.25em;
1052
1052
  }
1053
1053
 
1054
- .prose > ul > li > *:last-child{
1054
+ .aui-root .prose > ul > li > *:last-child{
1055
1055
  margin-bottom: 1.25em;
1056
1056
  }
1057
1057
 
1058
- .prose > ol > li > *:first-child{
1058
+ .aui-root .prose > ol > li > *:first-child{
1059
1059
  margin-top: 1.25em;
1060
1060
  }
1061
1061
 
1062
- .prose > ol > li > *:last-child{
1062
+ .aui-root .prose > ol > li > *:last-child{
1063
1063
  margin-bottom: 1.25em;
1064
1064
  }
1065
1065
 
1066
- .prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol{
1066
+ .aui-root .prose ul ul, .aui-root .prose ul ol, .aui-root .prose ol ul, .aui-root .prose ol ol{
1067
1067
  margin-top: 0.75em;
1068
1068
  margin-bottom: 0.75em;
1069
1069
  }
1070
1070
 
1071
- .prose hr + *{
1071
+ .aui-root .prose hr + *{
1072
1072
  margin-top: 0;
1073
1073
  }
1074
1074
 
1075
- .prose h2 + *{
1075
+ .aui-root .prose h2 + *{
1076
1076
  margin-top: 0;
1077
1077
  }
1078
1078
 
1079
- .prose h3 + *{
1079
+ .aui-root .prose h3 + *{
1080
1080
  margin-top: 0;
1081
1081
  }
1082
1082
 
1083
- .prose h4 + *{
1083
+ .aui-root .prose h4 + *{
1084
1084
  margin-top: 0;
1085
1085
  }
1086
1086
 
1087
- .prose thead th:first-child{
1087
+ .aui-root .prose thead th:first-child{
1088
1088
  padding-left: 0;
1089
1089
  }
1090
1090
 
1091
- .prose thead th:last-child{
1091
+ .aui-root .prose thead th:last-child{
1092
1092
  padding-right: 0;
1093
1093
  }
1094
1094
 
1095
- .prose tbody td:first-child{
1095
+ .aui-root .prose tbody td:first-child{
1096
1096
  padding-left: 0;
1097
1097
  }
1098
1098
 
1099
- .prose tbody td:last-child{
1099
+ .aui-root .prose tbody td:last-child{
1100
1100
  padding-right: 0;
1101
1101
  }
1102
1102
 
1103
- .prose > :first-child{
1103
+ .aui-root .prose > :first-child{
1104
1104
  margin-top: 0;
1105
1105
  }
1106
1106
 
1107
- .prose > :last-child{
1107
+ .aui-root .prose > :last-child{
1108
1108
  margin-bottom: 0;
1109
1109
  }
1110
1110
 
1111
1111
  @media (min-width: 1024px){
1112
- .container\:base .burger-menu{
1112
+ .aui-root .container\:base .burger-menu{
1113
1113
  display: none;
1114
1114
  }
1115
1115
  }
1116
1116
 
1117
- .container\:xl .burger-menu {
1117
+ .aui-root .container\:xl .burger-menu {
1118
1118
  }
1119
1119
 
1120
1120
  @media (min-width: 1024px){
1121
- .container\:base .sidebar{
1121
+ .aui-root .container\:base .sidebar{
1122
1122
  position: relative;
1123
1123
  display: block;
1124
1124
  height: auto;
@@ -1126,266 +1126,266 @@ video {
1126
1126
  }
1127
1127
  }
1128
1128
 
1129
- .container\:xl .sidebar {
1129
+ .aui-root .container\:xl .sidebar {
1130
1130
  }
1131
1131
 
1132
1132
  @media (min-width: 1024px){
1133
- .container\:base .sidebar--content{
1133
+ .aui-root .container\:base .sidebar--content{
1134
1134
  width: 14rem;
1135
1135
  }
1136
1136
  }
1137
1137
 
1138
- .container\:xl .sidebar--content {
1138
+ .aui-root .container\:xl .sidebar--content {
1139
1139
  position: absolute;
1140
1140
  left: 50%;
1141
1141
  transform: translate(-50%, 0);
1142
1142
  }
1143
1143
 
1144
1144
  @media (min-width: 1536px){
1145
- .container\:base .panel-item{
1145
+ .aui-root .container\:base .panel-item{
1146
1146
  display: flex;
1147
1147
  }
1148
1148
  }
1149
1149
 
1150
- .container\:xl .panel-item {
1150
+ .aui-root .container\:xl .panel-item {
1151
1151
  display: block;
1152
1152
  }
1153
1153
 
1154
1154
  @media (min-width: 1536px){
1155
- .container\:base .panel--center .panel-item--center{
1155
+ .aui-root .container\:base .panel--center .panel-item--center{
1156
1156
  width: 58.333333%;
1157
1157
  }
1158
1158
  }
1159
1159
 
1160
1160
  @media (min-width: 1536px){
1161
- .container\:base .panel--center .panel-item--right{
1161
+ .aui-root .container\:base .panel--center .panel-item--right{
1162
1162
  width: 41.666667%;
1163
1163
  }
1164
1164
  }
1165
1165
 
1166
- .container\:xl .panel--center .panel-item--center {
1166
+ .aui-root .container\:xl .panel--center .panel-item--center {
1167
1167
  width: 100%;
1168
1168
  }
1169
1169
 
1170
- .container\:xl .panel--center .panel-item--right {
1170
+ .aui-root .container\:xl .panel--center .panel-item--right {
1171
1171
  width: 100%;
1172
1172
  }
1173
1173
 
1174
1174
  @media (min-width: 1536px){
1175
- .container\:base .examples{
1175
+ .aui-root .container\:base .examples{
1176
1176
  margin-top: 0px;
1177
1177
  padding: 0px;
1178
1178
  }
1179
1179
  }
1180
1180
 
1181
- .container\:xl .examples {
1181
+ .aui-root .container\:xl .examples {
1182
1182
  }
1183
1183
 
1184
- .container\:base .panel--right {
1184
+ .aui-root .container\:base .panel--right {
1185
1185
  display: none;
1186
1186
  }
1187
1187
 
1188
1188
  @media (min-width: 1536px){
1189
- .container\:base .panel--right{
1189
+ .aui-root .container\:base .panel--right{
1190
1190
  display: block;
1191
1191
  width: 41.666667%;
1192
1192
  }
1193
1193
  }
1194
1194
 
1195
- .container\:xl .panel--right {
1195
+ .aui-root .container\:xl .panel--right {
1196
1196
  display: none;
1197
1197
  }
1198
1198
 
1199
- .prose pre {
1199
+ .aui-root .prose pre {
1200
1200
  white-space: pre-wrap;
1201
1201
  }
1202
1202
 
1203
- .fixed{
1203
+ .aui-root .fixed{
1204
1204
  position: fixed;
1205
1205
  }
1206
1206
 
1207
- .absolute{
1207
+ .aui-root .absolute{
1208
1208
  position: absolute;
1209
1209
  }
1210
1210
 
1211
- .relative{
1211
+ .aui-root .relative{
1212
1212
  position: relative;
1213
1213
  }
1214
1214
 
1215
- .top-0{
1215
+ .aui-root .top-0{
1216
1216
  top: 0px;
1217
1217
  }
1218
1218
 
1219
- .right-0{
1219
+ .aui-root .right-0{
1220
1220
  right: 0px;
1221
1221
  }
1222
1222
 
1223
- .right-8{
1223
+ .aui-root .right-8{
1224
1224
  right: 2rem;
1225
1225
  }
1226
1226
 
1227
- .bottom-16{
1227
+ .aui-root .bottom-16{
1228
1228
  bottom: 4rem;
1229
1229
  }
1230
1230
 
1231
- .z-10{
1231
+ .aui-root .z-10{
1232
1232
  z-index: 10;
1233
1233
  }
1234
1234
 
1235
- .z-20{
1235
+ .aui-root .z-20{
1236
1236
  z-index: 20;
1237
1237
  }
1238
1238
 
1239
- .z-30{
1239
+ .aui-root .z-30{
1240
1240
  z-index: 30;
1241
1241
  }
1242
1242
 
1243
- .mx-2{
1243
+ .aui-root .mx-2{
1244
1244
  margin-left: 0.5rem;
1245
1245
  margin-right: 0.5rem;
1246
1246
  }
1247
1247
 
1248
- .-mx-8{
1248
+ .aui-root .-mx-8{
1249
1249
  margin-left: -2rem;
1250
1250
  margin-right: -2rem;
1251
1251
  }
1252
1252
 
1253
- .my-2{
1253
+ .aui-root .my-2{
1254
1254
  margin-top: 0.5rem;
1255
1255
  margin-bottom: 0.5rem;
1256
1256
  }
1257
1257
 
1258
- .mt-1{
1258
+ .aui-root .mt-1{
1259
1259
  margin-top: 0.25rem;
1260
1260
  }
1261
1261
 
1262
- .mt-2{
1262
+ .aui-root .mt-2{
1263
1263
  margin-top: 0.5rem;
1264
1264
  }
1265
1265
 
1266
- .mt-4{
1266
+ .aui-root .mt-4{
1267
1267
  margin-top: 1rem;
1268
1268
  }
1269
1269
 
1270
- .mt-9{
1270
+ .aui-root .mt-9{
1271
1271
  margin-top: 2.25rem;
1272
1272
  }
1273
1273
 
1274
- .mt-10{
1274
+ .aui-root .mt-10{
1275
1275
  margin-top: 2.5rem;
1276
1276
  }
1277
1277
 
1278
- .mt-16{
1278
+ .aui-root .mt-16{
1279
1279
  margin-top: 4rem;
1280
1280
  }
1281
1281
 
1282
- .mr-1{
1282
+ .aui-root .mr-1{
1283
1283
  margin-right: 0.25rem;
1284
1284
  }
1285
1285
 
1286
- .mr-2{
1286
+ .aui-root .mr-2{
1287
1287
  margin-right: 0.5rem;
1288
1288
  }
1289
1289
 
1290
- .mb-2{
1290
+ .aui-root .mb-2{
1291
1291
  margin-bottom: 0.5rem;
1292
1292
  }
1293
1293
 
1294
- .mb-3{
1294
+ .aui-root .mb-3{
1295
1295
  margin-bottom: 0.75rem;
1296
1296
  }
1297
1297
 
1298
- .mb-4{
1298
+ .aui-root .mb-4{
1299
1299
  margin-bottom: 1rem;
1300
1300
  }
1301
1301
 
1302
- .mb-12{
1302
+ .aui-root .mb-12{
1303
1303
  margin-bottom: 3rem;
1304
1304
  }
1305
1305
 
1306
- .-mb-1{
1306
+ .aui-root .-mb-1{
1307
1307
  margin-bottom: -0.25rem;
1308
1308
  }
1309
1309
 
1310
- .ml-1{
1310
+ .aui-root .ml-1{
1311
1311
  margin-left: 0.25rem;
1312
1312
  }
1313
1313
 
1314
- .ml-2{
1314
+ .aui-root .ml-2{
1315
1315
  margin-left: 0.5rem;
1316
1316
  }
1317
1317
 
1318
- .block{
1318
+ .aui-root .block{
1319
1319
  display: block;
1320
1320
  }
1321
1321
 
1322
- .inline-block{
1322
+ .aui-root .inline-block{
1323
1323
  display: inline-block;
1324
1324
  }
1325
1325
 
1326
- .flex{
1326
+ .aui-root .flex{
1327
1327
  display: flex;
1328
1328
  }
1329
1329
 
1330
- .table{
1330
+ .aui-root .table{
1331
1331
  display: table;
1332
1332
  }
1333
1333
 
1334
- .hidden{
1334
+ .aui-root .hidden{
1335
1335
  display: none;
1336
1336
  }
1337
1337
 
1338
- .h-6{
1338
+ .aui-root .h-6{
1339
1339
  height: 1.5rem;
1340
1340
  }
1341
1341
 
1342
- .h-16{
1342
+ .aui-root .h-16{
1343
1343
  height: 4rem;
1344
1344
  }
1345
1345
 
1346
- .h-full{
1346
+ .aui-root .h-full{
1347
1347
  height: 100%;
1348
1348
  }
1349
1349
 
1350
- .max-h-screen{
1350
+ .aui-root .max-h-screen{
1351
1351
  max-height: 100vh;
1352
1352
  }
1353
1353
 
1354
- .w-5{
1354
+ .aui-root .w-5{
1355
1355
  width: 1.25rem;
1356
1356
  }
1357
1357
 
1358
- .w-16{
1358
+ .aui-root .w-16{
1359
1359
  width: 4rem;
1360
1360
  }
1361
1361
 
1362
- .w-64{
1362
+ .aui-root .w-64{
1363
1363
  width: 16rem;
1364
1364
  }
1365
1365
 
1366
- .w-3\/12{
1366
+ .aui-root .w-3\/12{
1367
1367
  width: 25%;
1368
1368
  }
1369
1369
 
1370
- .w-full{
1370
+ .aui-root .w-full{
1371
1371
  width: 100%;
1372
1372
  }
1373
1373
 
1374
- .min-w-min{
1374
+ .aui-root .min-w-min{
1375
1375
  min-width: -webkit-min-content;
1376
1376
  min-width: -moz-min-content;
1377
1377
  min-width: min-content;
1378
1378
  }
1379
1379
 
1380
- .max-w-none{
1380
+ .aui-root .max-w-none{
1381
1381
  max-width: none;
1382
1382
  }
1383
1383
 
1384
- .flex-1{
1384
+ .aui-root .flex-1{
1385
1385
  flex: 1 1 0%;
1386
1386
  }
1387
1387
 
1388
- .transform{
1388
+ .aui-root .transform{
1389
1389
  --tw-translate-x: 0;
1390
1390
  --tw-translate-y: 0;
1391
1391
  --tw-rotate: 0;
@@ -1396,11 +1396,11 @@ video {
1396
1396
  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));
1397
1397
  }
1398
1398
 
1399
- .-rotate-180{
1399
+ .aui-root .-rotate-180{
1400
1400
  --tw-rotate: -180deg;
1401
1401
  }
1402
1402
 
1403
- .-rotate-90{
1403
+ .aui-root .-rotate-90{
1404
1404
  --tw-rotate: -90deg;
1405
1405
  }
1406
1406
 
@@ -1470,450 +1470,450 @@ video {
1470
1470
  }
1471
1471
  }
1472
1472
 
1473
- .cursor-pointer{
1473
+ .aui-root .cursor-pointer{
1474
1474
  cursor: pointer;
1475
1475
  }
1476
1476
 
1477
- .flex-wrap{
1477
+ .aui-root .flex-wrap{
1478
1478
  flex-wrap: wrap;
1479
1479
  }
1480
1480
 
1481
- .items-center{
1481
+ .aui-root .items-center{
1482
1482
  align-items: center;
1483
1483
  }
1484
1484
 
1485
- .justify-center{
1485
+ .aui-root .justify-center{
1486
1486
  justify-content: center;
1487
1487
  }
1488
1488
 
1489
- .space-x-2 > :not([hidden]) ~ :not([hidden]){
1489
+ .aui-root .space-x-2 > :not([hidden]) ~ :not([hidden]){
1490
1490
  --tw-space-x-reverse: 0;
1491
1491
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1492
1492
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1493
1493
  }
1494
1494
 
1495
- .space-y-2 > :not([hidden]) ~ :not([hidden]){
1495
+ .aui-root .space-y-2 > :not([hidden]) ~ :not([hidden]){
1496
1496
  --tw-space-y-reverse: 0;
1497
1497
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
1498
1498
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
1499
1499
  }
1500
1500
 
1501
- .overflow-auto{
1501
+ .aui-root .overflow-auto{
1502
1502
  overflow: auto;
1503
1503
  }
1504
1504
 
1505
- .overflow-y-auto{
1505
+ .aui-root .overflow-y-auto{
1506
1506
  overflow-y: auto;
1507
1507
  }
1508
1508
 
1509
- .whitespace-pre-wrap{
1509
+ .aui-root .whitespace-pre-wrap{
1510
1510
  white-space: pre-wrap;
1511
1511
  }
1512
1512
 
1513
- .break-words{
1513
+ .aui-root .break-words{
1514
1514
  overflow-wrap: break-word;
1515
1515
  }
1516
1516
 
1517
- .break-all{
1517
+ .aui-root .break-all{
1518
1518
  word-break: break-all;
1519
1519
  }
1520
1520
 
1521
- .rounded{
1521
+ .aui-root .rounded{
1522
1522
  border-radius: 0.25rem;
1523
1523
  }
1524
1524
 
1525
- .rounded-full{
1525
+ .aui-root .rounded-full{
1526
1526
  border-radius: 9999px;
1527
1527
  }
1528
1528
 
1529
- .border{
1529
+ .aui-root .border{
1530
1530
  border-width: 1px;
1531
1531
  }
1532
1532
 
1533
- .border-l-8{
1533
+ .aui-root .border-l-8{
1534
1534
  border-left-width: 8px;
1535
1535
  }
1536
1536
 
1537
- .border-solid{
1537
+ .aui-root .border-solid{
1538
1538
  border-style: solid;
1539
1539
  }
1540
1540
 
1541
- .border-gray-400{
1541
+ .aui-root .border-gray-400{
1542
1542
  --tw-border-opacity: 1;
1543
1543
  border-color: rgba(203, 213, 224, var(--tw-border-opacity));
1544
1544
  }
1545
1545
 
1546
- .border-red-500{
1546
+ .aui-root .border-red-500{
1547
1547
  --tw-border-opacity: 1;
1548
1548
  border-color: rgba(245, 101, 101, var(--tw-border-opacity));
1549
1549
  }
1550
1550
 
1551
- .border-orange-300{
1551
+ .aui-root .border-orange-300{
1552
1552
  --tw-border-opacity: 1;
1553
1553
  border-color: rgba(251, 211, 141, var(--tw-border-opacity));
1554
1554
  }
1555
1555
 
1556
- .border-green-600{
1556
+ .aui-root .border-green-600{
1557
1557
  --tw-border-opacity: 1;
1558
1558
  border-color: rgba(56, 161, 105, var(--tw-border-opacity));
1559
1559
  }
1560
1560
 
1561
- .border-blue-300{
1561
+ .aui-root .border-blue-300{
1562
1562
  --tw-border-opacity: 1;
1563
1563
  border-color: rgba(144, 205, 244, var(--tw-border-opacity));
1564
1564
  }
1565
1565
 
1566
- .border-blue-600{
1566
+ .aui-root .border-blue-600{
1567
1567
  --tw-border-opacity: 1;
1568
1568
  border-color: rgba(49, 130, 206, var(--tw-border-opacity));
1569
1569
  }
1570
1570
 
1571
- .border-purple-300{
1571
+ .aui-root .border-purple-300{
1572
1572
  --tw-border-opacity: 1;
1573
1573
  border-color: rgba(214, 188, 250, var(--tw-border-opacity));
1574
1574
  }
1575
1575
 
1576
- .bg-white{
1576
+ .aui-root .bg-white{
1577
1577
  --tw-bg-opacity: 1;
1578
1578
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
1579
1579
  }
1580
1580
 
1581
- .bg-gray-100{
1581
+ .aui-root .bg-gray-100{
1582
1582
  --tw-bg-opacity: 1;
1583
1583
  background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
1584
1584
  }
1585
1585
 
1586
- .bg-gray-200{
1586
+ .aui-root .bg-gray-200{
1587
1587
  --tw-bg-opacity: 1;
1588
1588
  background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
1589
1589
  }
1590
1590
 
1591
- .bg-gray-800{
1591
+ .aui-root .bg-gray-800{
1592
1592
  --tw-bg-opacity: 1;
1593
1593
  background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
1594
1594
  }
1595
1595
 
1596
- .bg-yellow-600{
1596
+ .aui-root .bg-yellow-600{
1597
1597
  --tw-bg-opacity: 1;
1598
1598
  background-color: rgba(214, 158, 46, var(--tw-bg-opacity));
1599
1599
  }
1600
1600
 
1601
- .bg-green-600{
1601
+ .aui-root .bg-green-600{
1602
1602
  --tw-bg-opacity: 1;
1603
1603
  background-color: rgba(56, 161, 105, var(--tw-bg-opacity));
1604
1604
  }
1605
1605
 
1606
- .bg-teal-500{
1606
+ .aui-root .bg-teal-500{
1607
1607
  --tw-bg-opacity: 1;
1608
1608
  background-color: rgba(56, 178, 172, var(--tw-bg-opacity));
1609
1609
  }
1610
1610
 
1611
- .bg-blue-400{
1611
+ .aui-root .bg-blue-400{
1612
1612
  --tw-bg-opacity: 1;
1613
1613
  background-color: rgba(99, 179, 237, var(--tw-bg-opacity));
1614
1614
  }
1615
1615
 
1616
- .bg-blue-500{
1616
+ .aui-root .bg-blue-500{
1617
1617
  --tw-bg-opacity: 1;
1618
1618
  background-color: rgba(66, 153, 225, var(--tw-bg-opacity));
1619
1619
  }
1620
1620
 
1621
- .bg-blue-600{
1621
+ .aui-root .bg-blue-600{
1622
1622
  --tw-bg-opacity: 1;
1623
1623
  background-color: rgba(49, 130, 206, var(--tw-bg-opacity));
1624
1624
  }
1625
1625
 
1626
- .bg-indigo-400{
1626
+ .aui-root .bg-indigo-400{
1627
1627
  --tw-bg-opacity: 1;
1628
1628
  background-color: rgba(127, 156, 245, var(--tw-bg-opacity));
1629
1629
  }
1630
1630
 
1631
- .bg-purple-600{
1631
+ .aui-root .bg-purple-600{
1632
1632
  --tw-bg-opacity: 1;
1633
1633
  background-color: rgba(128, 90, 213, var(--tw-bg-opacity));
1634
1634
  }
1635
1635
 
1636
- .hover\:bg-orange-300:hover{
1636
+ .aui-root .hover\:bg-orange-300:hover{
1637
1637
  --tw-bg-opacity: 1;
1638
1638
  background-color: rgba(251, 211, 141, var(--tw-bg-opacity));
1639
1639
  }
1640
1640
 
1641
- .hover\:bg-blue-300:hover{
1641
+ .aui-root .hover\:bg-blue-300:hover{
1642
1642
  --tw-bg-opacity: 1;
1643
1643
  background-color: rgba(144, 205, 244, var(--tw-bg-opacity));
1644
1644
  }
1645
1645
 
1646
- .hover\:bg-purple-300:hover{
1646
+ .aui-root .hover\:bg-purple-300:hover{
1647
1647
  --tw-bg-opacity: 1;
1648
1648
  background-color: rgba(214, 188, 250, var(--tw-bg-opacity));
1649
1649
  }
1650
1650
 
1651
- .fill-current{
1651
+ .aui-root .fill-current{
1652
1652
  fill: currentColor;
1653
1653
  }
1654
1654
 
1655
- .p-1{
1655
+ .aui-root .p-1{
1656
1656
  padding: 0.25rem;
1657
1657
  }
1658
1658
 
1659
- .p-2{
1659
+ .aui-root .p-2{
1660
1660
  padding: 0.5rem;
1661
1661
  }
1662
1662
 
1663
- .p-4{
1663
+ .aui-root .p-4{
1664
1664
  padding: 1rem;
1665
1665
  }
1666
1666
 
1667
- .p-8{
1667
+ .aui-root .p-8{
1668
1668
  padding: 2rem;
1669
1669
  }
1670
1670
 
1671
- .px-1{
1671
+ .aui-root .px-1{
1672
1672
  padding-left: 0.25rem;
1673
1673
  padding-right: 0.25rem;
1674
1674
  }
1675
1675
 
1676
- .px-2{
1676
+ .aui-root .px-2{
1677
1677
  padding-left: 0.5rem;
1678
1678
  padding-right: 0.5rem;
1679
1679
  }
1680
1680
 
1681
- .px-3{
1681
+ .aui-root .px-3{
1682
1682
  padding-left: 0.75rem;
1683
1683
  padding-right: 0.75rem;
1684
1684
  }
1685
1685
 
1686
- .px-4{
1686
+ .aui-root .px-4{
1687
1687
  padding-left: 1rem;
1688
1688
  padding-right: 1rem;
1689
1689
  }
1690
1690
 
1691
- .px-8{
1691
+ .aui-root .px-8{
1692
1692
  padding-left: 2rem;
1693
1693
  padding-right: 2rem;
1694
1694
  }
1695
1695
 
1696
- .py-0{
1696
+ .aui-root .py-0{
1697
1697
  padding-top: 0px;
1698
1698
  padding-bottom: 0px;
1699
1699
  }
1700
1700
 
1701
- .py-1{
1701
+ .aui-root .py-1{
1702
1702
  padding-top: 0.25rem;
1703
1703
  padding-bottom: 0.25rem;
1704
1704
  }
1705
1705
 
1706
- .py-2{
1706
+ .aui-root .py-2{
1707
1707
  padding-top: 0.5rem;
1708
1708
  padding-bottom: 0.5rem;
1709
1709
  }
1710
1710
 
1711
- .py-4{
1711
+ .aui-root .py-4{
1712
1712
  padding-top: 1rem;
1713
1713
  padding-bottom: 1rem;
1714
1714
  }
1715
1715
 
1716
- .py-8{
1716
+ .aui-root .py-8{
1717
1717
  padding-top: 2rem;
1718
1718
  padding-bottom: 2rem;
1719
1719
  }
1720
1720
 
1721
- .pt-8{
1721
+ .aui-root .pt-8{
1722
1722
  padding-top: 2rem;
1723
1723
  }
1724
1724
 
1725
- .pb-16{
1725
+ .aui-root .pb-16{
1726
1726
  padding-bottom: 4rem;
1727
1727
  }
1728
1728
 
1729
- .text-left{
1729
+ .aui-root .text-left{
1730
1730
  text-align: left;
1731
1731
  }
1732
1732
 
1733
- .align-baseline{
1733
+ .aui-root .align-baseline{
1734
1734
  vertical-align: baseline;
1735
1735
  }
1736
1736
 
1737
- .font-sans{
1737
+ .aui-root .font-sans{
1738
1738
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1739
1739
  }
1740
1740
 
1741
- .font-mono{
1741
+ .aui-root .font-mono{
1742
1742
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1743
1743
  }
1744
1744
 
1745
- .text-xs{
1745
+ .aui-root .text-xs{
1746
1746
  font-size: 0.75rem;
1747
1747
  }
1748
1748
 
1749
- .text-sm{
1749
+ .aui-root .text-sm{
1750
1750
  font-size: 0.875rem;
1751
1751
  }
1752
1752
 
1753
- .text-base{
1753
+ .aui-root .text-base{
1754
1754
  font-size: 1rem;
1755
1755
  }
1756
1756
 
1757
- .text-lg{
1757
+ .aui-root .text-lg{
1758
1758
  font-size: 1.125rem;
1759
1759
  }
1760
1760
 
1761
- .text-2xl{
1761
+ .aui-root .text-2xl{
1762
1762
  font-size: 1.5rem;
1763
1763
  }
1764
1764
 
1765
- .text-3xl{
1765
+ .aui-root .text-3xl{
1766
1766
  font-size: 1.875rem;
1767
1767
  }
1768
1768
 
1769
- .text-4xl{
1769
+ .aui-root .text-4xl{
1770
1770
  font-size: 2.25rem;
1771
1771
  }
1772
1772
 
1773
- .font-thin{
1773
+ .aui-root .font-thin{
1774
1774
  font-weight: 100;
1775
1775
  }
1776
1776
 
1777
- .font-extralight{
1777
+ .aui-root .font-extralight{
1778
1778
  font-weight: 200;
1779
1779
  }
1780
1780
 
1781
- .font-light{
1781
+ .aui-root .font-light{
1782
1782
  font-weight: 300;
1783
1783
  }
1784
1784
 
1785
- .font-bold{
1785
+ .aui-root .font-bold{
1786
1786
  font-weight: 700;
1787
1787
  }
1788
1788
 
1789
- .uppercase{
1789
+ .aui-root .uppercase{
1790
1790
  text-transform: uppercase;
1791
1791
  }
1792
1792
 
1793
- .lowercase{
1793
+ .aui-root .lowercase{
1794
1794
  text-transform: lowercase;
1795
1795
  }
1796
1796
 
1797
- .capitalize{
1797
+ .aui-root .capitalize{
1798
1798
  text-transform: capitalize;
1799
1799
  }
1800
1800
 
1801
- .italic{
1801
+ .aui-root .italic{
1802
1802
  font-style: italic;
1803
1803
  }
1804
1804
 
1805
- .leading-normal{
1805
+ .aui-root .leading-normal{
1806
1806
  line-height: 1.5;
1807
1807
  }
1808
1808
 
1809
- .text-white{
1809
+ .aui-root .text-white{
1810
1810
  --tw-text-opacity: 1;
1811
1811
  color: rgba(255, 255, 255, var(--tw-text-opacity));
1812
1812
  }
1813
1813
 
1814
- .text-gray-200{
1814
+ .aui-root .text-gray-200{
1815
1815
  --tw-text-opacity: 1;
1816
1816
  color: rgba(237, 242, 247, var(--tw-text-opacity));
1817
1817
  }
1818
1818
 
1819
- .text-gray-500{
1819
+ .aui-root .text-gray-500{
1820
1820
  --tw-text-opacity: 1;
1821
1821
  color: rgba(160, 174, 192, var(--tw-text-opacity));
1822
1822
  }
1823
1823
 
1824
- .text-gray-600{
1824
+ .aui-root .text-gray-600{
1825
1825
  --tw-text-opacity: 1;
1826
1826
  color: rgba(113, 128, 150, var(--tw-text-opacity));
1827
1827
  }
1828
1828
 
1829
- .text-gray-700{
1829
+ .aui-root .text-gray-700{
1830
1830
  --tw-text-opacity: 1;
1831
1831
  color: rgba(74, 85, 104, var(--tw-text-opacity));
1832
1832
  }
1833
1833
 
1834
- .text-red-600{
1834
+ .aui-root .text-red-600{
1835
1835
  --tw-text-opacity: 1;
1836
1836
  color: rgba(229, 62, 62, var(--tw-text-opacity));
1837
1837
  }
1838
1838
 
1839
- .text-orange-500{
1839
+ .aui-root .text-orange-500{
1840
1840
  --tw-text-opacity: 1;
1841
1841
  color: rgba(237, 137, 54, var(--tw-text-opacity));
1842
1842
  }
1843
1843
 
1844
- .text-orange-600{
1844
+ .aui-root .text-orange-600{
1845
1845
  --tw-text-opacity: 1;
1846
1846
  color: rgba(221, 107, 32, var(--tw-text-opacity));
1847
1847
  }
1848
1848
 
1849
- .text-green-600{
1849
+ .aui-root .text-green-600{
1850
1850
  --tw-text-opacity: 1;
1851
1851
  color: rgba(56, 161, 105, var(--tw-text-opacity));
1852
1852
  }
1853
1853
 
1854
- .text-teal-500{
1854
+ .aui-root .text-teal-500{
1855
1855
  --tw-text-opacity: 1;
1856
1856
  color: rgba(56, 178, 172, var(--tw-text-opacity));
1857
1857
  }
1858
1858
 
1859
- .text-blue-500{
1859
+ .aui-root .text-blue-500{
1860
1860
  --tw-text-opacity: 1;
1861
1861
  color: rgba(66, 153, 225, var(--tw-text-opacity));
1862
1862
  }
1863
1863
 
1864
- .text-purple-500{
1864
+ .aui-root .text-purple-500{
1865
1865
  --tw-text-opacity: 1;
1866
1866
  color: rgba(159, 122, 234, var(--tw-text-opacity));
1867
1867
  }
1868
1868
 
1869
- .hover\:text-gray-900:hover{
1869
+ .aui-root .hover\:text-gray-900:hover{
1870
1870
  --tw-text-opacity: 1;
1871
1871
  color: rgba(26, 32, 44, var(--tw-text-opacity));
1872
1872
  }
1873
1873
 
1874
- .hover\:text-orange-600:hover{
1874
+ .aui-root .hover\:text-orange-600:hover{
1875
1875
  --tw-text-opacity: 1;
1876
1876
  color: rgba(221, 107, 32, var(--tw-text-opacity));
1877
1877
  }
1878
1878
 
1879
- .hover\:text-blue-600:hover{
1879
+ .aui-root .hover\:text-blue-600:hover{
1880
1880
  --tw-text-opacity: 1;
1881
1881
  color: rgba(49, 130, 206, var(--tw-text-opacity));
1882
1882
  }
1883
1883
 
1884
- .hover\:text-purple-600:hover{
1884
+ .aui-root .hover\:text-purple-600:hover{
1885
1885
  --tw-text-opacity: 1;
1886
1886
  color: rgba(128, 90, 213, var(--tw-text-opacity));
1887
1887
  }
1888
1888
 
1889
- .underline{
1889
+ .aui-root .underline{
1890
1890
  text-decoration: underline;
1891
1891
  }
1892
1892
 
1893
- .no-underline{
1893
+ .aui-root .no-underline{
1894
1894
  text-decoration: none;
1895
1895
  }
1896
1896
 
1897
- *, ::before, ::after{
1897
+ .aui-root *, .aui-root ::before, .aui-root ::after{
1898
1898
  --tw-shadow: 0 0 #0000;
1899
1899
  }
1900
1900
 
1901
- .shadow{
1901
+ .aui-root .shadow{
1902
1902
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
1903
1903
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1904
1904
  }
1905
1905
 
1906
- .shadow-md{
1906
+ .aui-root .shadow-md{
1907
1907
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
1908
1908
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1909
1909
  }
1910
1910
 
1911
- .focus\:outline-none:focus{
1911
+ .aui-root .focus\:outline-none:focus{
1912
1912
  outline: 2px solid transparent;
1913
1913
  outline-offset: 2px;
1914
1914
  }
1915
1915
 
1916
- *, ::before, ::after{
1916
+ .aui-root *, .aui-root ::before, .aui-root ::after{
1917
1917
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
1918
1918
  --tw-ring-offset-width: 0px;
1919
1919
  --tw-ring-offset-color: #fff;
@@ -1922,7 +1922,7 @@ video {
1922
1922
  --tw-ring-shadow: 0 0 #0000;
1923
1923
  }
1924
1924
 
1925
- .filter{
1925
+ .aui-root .filter{
1926
1926
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
1927
1927
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
1928
1928
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
@@ -1935,17 +1935,17 @@ video {
1935
1935
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1936
1936
  }
1937
1937
 
1938
- .transition-transform{
1938
+ .aui-root .transition-transform{
1939
1939
  transition-property: transform;
1940
1940
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1941
1941
  transition-duration: 150ms;
1942
1942
  }
1943
1943
 
1944
- .duration-150{
1944
+ .aui-root .duration-150{
1945
1945
  transition-duration: 150ms;
1946
1946
  }
1947
1947
 
1948
- .ease-linear{
1948
+ .aui-root .ease-linear{
1949
1949
  transition-timing-function: linear;
1950
1950
  }
1951
1951
 
@@ -1953,7 +1953,7 @@ video {
1953
1953
  }
1954
1954
 
1955
1955
  @media (min-width: 768px){
1956
- .md\:flex{
1956
+ .aui-root .md\:flex{
1957
1957
  display: flex;
1958
1958
  }
1959
1959
  }
@@ -1965,20 +1965,20 @@ video {
1965
1965
  }
1966
1966
 
1967
1967
  @media (min-width: 1536px){
1968
- .\32xl\:mx-0{
1968
+ .aui-root .\32xl\:mx-0{
1969
1969
  margin-left: 0px;
1970
1970
  margin-right: 0px;
1971
1971
  }
1972
1972
 
1973
- .\32xl\:w-7\/12{
1973
+ .aui-root .\32xl\:w-7\/12{
1974
1974
  width: 58.333333%;
1975
1975
  }
1976
1976
 
1977
- .\32xl\:rounded{
1977
+ .aui-root .\32xl\:rounded{
1978
1978
  border-radius: 0.25rem;
1979
1979
  }
1980
1980
 
1981
- .\32xl\:px-4{
1981
+ .aui-root .\32xl\:px-4{
1982
1982
  padding-left: 1rem;
1983
1983
  padding-right: 1rem;
1984
1984
  }