llms-py 3.0.0b1__py3-none-any.whl → 3.0.0b2__py3-none-any.whl

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 (39) hide show
  1. llms/__pycache__/__init__.cpython-312.pyc +0 -0
  2. llms/__pycache__/__init__.cpython-313.pyc +0 -0
  3. llms/__pycache__/__init__.cpython-314.pyc +0 -0
  4. llms/__pycache__/__main__.cpython-312.pyc +0 -0
  5. llms/__pycache__/__main__.cpython-314.pyc +0 -0
  6. llms/__pycache__/llms.cpython-312.pyc +0 -0
  7. llms/__pycache__/main.cpython-312.pyc +0 -0
  8. llms/__pycache__/main.cpython-313.pyc +0 -0
  9. llms/__pycache__/main.cpython-314.pyc +0 -0
  10. llms/__pycache__/plugins.cpython-314.pyc +0 -0
  11. llms/index.html +25 -56
  12. llms/llms.json +2 -2
  13. llms/main.py +452 -93
  14. llms/providers.json +1 -1
  15. llms/ui/App.mjs +25 -4
  16. llms/ui/Avatar.mjs +3 -2
  17. llms/ui/ChatPrompt.mjs +43 -52
  18. llms/ui/Main.mjs +87 -98
  19. llms/ui/OAuthSignIn.mjs +2 -33
  20. llms/ui/ProviderStatus.mjs +7 -8
  21. llms/ui/Recents.mjs +10 -9
  22. llms/ui/Sidebar.mjs +2 -1
  23. llms/ui/SignIn.mjs +7 -6
  24. llms/ui/ai.mjs +9 -41
  25. llms/ui/app.css +137 -138
  26. llms/ui/index.mjs +213 -0
  27. llms/ui/{ModelSelector.mjs → model-selector.mjs} +193 -200
  28. llms/ui/tailwind.input.css +441 -79
  29. llms/ui/threadStore.mjs +17 -6
  30. llms/ui/utils.mjs +1 -0
  31. {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b2.dist-info}/METADATA +1 -1
  32. llms_py-3.0.0b2.dist-info/RECORD +58 -0
  33. llms/ui/SystemPromptEditor.mjs +0 -31
  34. llms/ui/SystemPromptSelector.mjs +0 -56
  35. llms_py-3.0.0b1.dist-info/RECORD +0 -49
  36. {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b2.dist-info}/WHEEL +0 -0
  37. {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b2.dist-info}/entry_points.txt +0 -0
  38. {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b2.dist-info}/licenses/LICENSE +0 -0
  39. {llms_py-3.0.0b1.dist-info → llms_py-3.0.0b2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,7 @@
1
1
  /* tailwindcss -i ./tailwind.input.css -o ./ui/app.css --watch */
2
2
  @import "tailwindcss";
3
3
  @source "./lib/servicestack-vue.mjs";
4
+ @source "../../extensions";
4
5
 
5
6
  @custom-variant dark (&:where(.dark, .dark *));
6
7
 
@@ -13,6 +14,7 @@
13
14
  --ring: 221.2 83.2% 53.3%;
14
15
  --radius: 0.5rem;
15
16
  }
17
+
16
18
  :root.dark {
17
19
  --background: 222.2 84% 4.9%;
18
20
  --foreground: 210 40% 98%;
@@ -37,17 +39,37 @@
37
39
  @layer base {
38
40
 
39
41
  /*vue*/
40
- [v-cloak] {display:none}
42
+ [v-cloak] {
43
+ display: none
44
+ }
41
45
 
42
46
  /* override element defaults */
43
- b, strong { font-weight:600; }
44
- ::-webkit-scrollbar{width:8px;height:8px}
45
- ::-webkit-scrollbar-thumb{background-color:#ccc}
46
- .dark ::-webkit-scrollbar{background:#1f2937}
47
- .dark ::-webkit-scrollbar-thumb{background-color:#4b5563}
47
+ b,
48
+ strong {
49
+ font-weight: 600;
50
+ }
51
+
52
+ ::-webkit-scrollbar {
53
+ width: 8px;
54
+ height: 8px
55
+ }
56
+
57
+ ::-webkit-scrollbar-thumb {
58
+ background-color: #ccc
59
+ }
60
+
61
+ .dark ::-webkit-scrollbar {
62
+ background: #1f2937
63
+ }
64
+
65
+ .dark ::-webkit-scrollbar-thumb {
66
+ background-color: #4b5563
67
+ }
68
+
48
69
  [role=dialog].z-10 {
49
70
  z-index: 60;
50
71
  }
72
+
51
73
  em {
52
74
  color: #3b82f6;
53
75
  font-weight: 400;
@@ -58,18 +80,24 @@
58
80
  margin-right: 0.125em;
59
81
  font-style: normal;
60
82
  }
83
+
61
84
  .message em {
62
- background-color: #eff6ff;border:1px solid #3b83f680;border-radius: .25rem;padding: .2rem .25rem .1rem .25rem
85
+ background-color: #eff6ff;
86
+ border: 1px solid #3b83f680;
87
+ border-radius: .25rem;
88
+ padding: .2rem .25rem .1rem .25rem
63
89
  }
64
90
 
65
91
  /* Chat-specific styles */
66
92
  .prose {
67
93
  max-width: none;
68
94
  }
69
- .prose > pre {
95
+
96
+ .prose>pre {
70
97
  margin-top: 0;
71
98
  margin-bottom: 0;
72
99
  }
100
+
73
101
  .prose pre {
74
102
  background-color: #1f2937;
75
103
  color: #f9fafb;
@@ -77,6 +105,7 @@
77
105
  padding: 1rem;
78
106
  overflow-x: auto;
79
107
  }
108
+
80
109
  .prose code {
81
110
  background-color: #f3f4f6;
82
111
  color: #1f2937;
@@ -84,62 +113,196 @@
84
113
  border-radius: 0.25rem;
85
114
  font-size: 0.875em;
86
115
  }
116
+
87
117
  .prose pre code {
88
118
  background-color: transparent;
89
119
  color: inherit;
90
120
  padding: 0;
91
121
  }
122
+
92
123
  .prose blockquote {
93
124
  border-left: 4px solid #e5e7eb;
94
125
  padding-left: 1rem;
95
126
  font-style: italic;
96
127
  color: #6b7280;
97
128
  }
129
+
98
130
  .prose table {
99
131
  border-collapse: collapse;
100
132
  width: 100%;
101
133
  }
134
+
102
135
  .prose th,
103
136
  .prose td {
104
137
  border: 1px solid #e5e7eb;
105
138
  padding: 0.5rem;
106
139
  text-align: left;
107
140
  }
141
+
108
142
  .prose th {
109
143
  background-color: #f9fafb;
110
144
  font-weight: 600;
111
145
  }
112
146
 
113
147
  /* highlight.js - vs.css */
114
- .hljs {background:white;color:black}
115
- .hljs-comment,.hljs-quote,.hljs-variable{color:#008000}
116
- .hljs-keyword,.hljs-selector-tag,.hljs-built_in,.hljs-name,.hljs-tag{color:#00f}
117
- .hljs-string,.hljs-title,.hljs-section,.hljs-attribute,.hljs-literal,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-addition{color:#a31515}
118
- .hljs-deletion,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-meta{color:#2b91af}
119
- .hljs-doctag{color:#808080}
120
- .hljs-attr{color: #f00}
121
- .hljs-symbol,.hljs-bullet,.hljs-link{color:#00b0e8}
122
- .hljs-emphasis{font-style:italic}
123
- .hljs-strong{font-weight:bold}
148
+ .hljs {
149
+ background: white;
150
+ color: black
151
+ }
152
+
153
+ .hljs-comment,
154
+ .hljs-quote,
155
+ .hljs-variable {
156
+ color: #008000
157
+ }
158
+
159
+ .hljs-keyword,
160
+ .hljs-selector-tag,
161
+ .hljs-built_in,
162
+ .hljs-name,
163
+ .hljs-tag {
164
+ color: #00f
165
+ }
166
+
167
+ .hljs-string,
168
+ .hljs-title,
169
+ .hljs-section,
170
+ .hljs-attribute,
171
+ .hljs-literal,
172
+ .hljs-template-tag,
173
+ .hljs-template-variable,
174
+ .hljs-type,
175
+ .hljs-addition {
176
+ color: #a31515
177
+ }
178
+
179
+ .hljs-deletion,
180
+ .hljs-selector-attr,
181
+ .hljs-selector-pseudo,
182
+ .hljs-meta {
183
+ color: #2b91af
184
+ }
185
+
186
+ .hljs-doctag {
187
+ color: #808080
188
+ }
189
+
190
+ .hljs-attr {
191
+ color: #f00
192
+ }
193
+
194
+ .hljs-symbol,
195
+ .hljs-bullet,
196
+ .hljs-link {
197
+ color: #00b0e8
198
+ }
199
+
200
+ .hljs-emphasis {
201
+ font-style: italic
202
+ }
203
+
204
+ .hljs-strong {
205
+ font-weight: bold
206
+ }
124
207
 
125
208
  /* https://unpkg.com/@highlightjs/cdn-assets/styles/atom-one-dark.min.css */
126
- pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#abb2bf;background:#282c34}
127
- .hljs-comment,.hljs-quote{color:#5c6370;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#c678dd}
128
- .hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst,.hljs-tag{color:#e06c75}
129
- .hljs-literal{color:#56b6c2}
130
- .hljs-addition,.hljs-attribute,.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#98c379}
131
- .hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#d19a66}
132
- .hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#61aeee}
133
- .hljs-built_in,.hljs-class .hljs-title,.hljs-title.class_{color:#e6c07b}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}
134
- .hljs-link{text-decoration:underline}
209
+ pre code.hljs {
210
+ display: block;
211
+ overflow-x: auto;
212
+ padding: 1em
213
+ }
214
+
215
+ code.hljs {
216
+ padding: 3px 5px
217
+ }
218
+
219
+ .hljs {
220
+ color: #abb2bf;
221
+ background: #282c34
222
+ }
223
+
224
+ .hljs-comment,
225
+ .hljs-quote {
226
+ color: #5c6370;
227
+ font-style: italic
228
+ }
229
+
230
+ .hljs-doctag,
231
+ .hljs-formula,
232
+ .hljs-keyword {
233
+ color: #c678dd
234
+ }
235
+
236
+ .hljs-deletion,
237
+ .hljs-name,
238
+ .hljs-section,
239
+ .hljs-selector-tag,
240
+ .hljs-subst,
241
+ .hljs-tag {
242
+ color: #e06c75
243
+ }
244
+
245
+ .hljs-literal {
246
+ color: #56b6c2
247
+ }
248
+
249
+ .hljs-addition,
250
+ .hljs-attribute,
251
+ .hljs-meta .hljs-string,
252
+ .hljs-regexp,
253
+ .hljs-string {
254
+ color: #98c379
255
+ }
256
+
257
+ .hljs-attr,
258
+ .hljs-number,
259
+ .hljs-selector-attr,
260
+ .hljs-selector-class,
261
+ .hljs-selector-pseudo,
262
+ .hljs-template-variable,
263
+ .hljs-type,
264
+ .hljs-variable {
265
+ color: #d19a66
266
+ }
267
+
268
+ .hljs-bullet,
269
+ .hljs-link,
270
+ .hljs-meta,
271
+ .hljs-selector-id,
272
+ .hljs-symbol,
273
+ .hljs-title {
274
+ color: #61aeee
275
+ }
276
+
277
+ .hljs-built_in,
278
+ .hljs-class .hljs-title,
279
+ .hljs-title.class_ {
280
+ color: #e6c07b
281
+ }
282
+
283
+ .hljs-emphasis {
284
+ font-style: italic
285
+ }
286
+
287
+ .hljs-strong {
288
+ font-weight: 700
289
+ }
290
+
291
+ .hljs-link {
292
+ text-decoration: underline
293
+ }
135
294
 
136
295
  /*highlightjs*/
137
- .hljs, .prose :where(pre):not(:where([class~="not-prose"] *)) .hljs {
296
+ .hljs,
297
+ .prose :where(pre):not(:where([class~="not-prose"] *)) .hljs {
138
298
  color: #e5e7eb !important;
139
299
  background-color: #282c34 !important;
140
300
  }
141
- .hljs-comment, .hljs-quote {
142
- color: rgb(148 163 184); /*text-slate-400*/
301
+
302
+ .hljs-comment,
303
+ .hljs-quote {
304
+ color: rgb(148 163 184);
305
+ /*text-slate-400*/
143
306
  }
144
307
 
145
308
  pre {
@@ -155,15 +318,18 @@
155
318
  min-width: fit-content;
156
319
  background-color: #282c34 !important;
157
320
  }
321
+
158
322
  pre code.hljs {
159
323
  display: block;
160
324
  overflow-x: auto;
161
325
  padding: 1em;
162
326
  }
327
+
163
328
  .message pre {
164
329
  max-width: 100%;
165
330
  min-width: auto;
166
331
  }
332
+
167
333
  .message pre code.hljs {
168
334
  overflow-x: unset;
169
335
  width: 100%;
@@ -182,57 +348,250 @@
182
348
  outline-offset: 2px;
183
349
  box-shadow: 0 0 0 2px #3b82f6;
184
350
  }
351
+
185
352
  /* @tailwindcss/forms css */
186
- [type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='week'],[type='search'],[type='tel'],[type='time'],[type='color'],[multiple],textarea,select
187
- {-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-width:1px;padding:0.5rem 0.75rem;font-size:1rem}
188
- .dark [type='text'],.dark [type='email'],.dark [type='url'],.dark [type='password'],.dark [type='number'],.dark [type='date'],.dark [type='datetime-local'],.dark [type='month'],.dark [type='week'],.dark [type='search'],.dark [type='tel'],.dark [type='time'],.dark [type='color'],.dark [multiple],.dark textarea,.dark select
189
- {background-color:var(--color-gray-800)}
190
-
191
- [type='text']:focus,[type='email']:focus,[type='url']:focus,[type='password']:focus,[type='number']:focus,[type='date']:focus,[type='datetime-local']:focus,[type='month']:focus,[type='week']:focus,[type='search']:focus,[type='tel']:focus,[type='time']:focus,[type='color']:focus,[multiple]:focus,textarea:focus,select:focus{
192
- outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);
193
- --tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;
194
- --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
195
- --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
196
- box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);border-color:#2563eb;}
197
- input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}
198
- input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#6b7280;opacity:1}
199
- input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}
200
- select{
201
- background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
202
- background-position:right 0.5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}
203
- [multiple]{
204
- background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:0.75rem;-webkit-print-color-adjust:unset;color-adjust:unset;}
205
- [type='checkbox'],[type='radio']{
206
- -webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;
207
- vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;
208
- flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-width:1px}
209
- [type='radio']{border-radius:100%}
210
- [type='checkbox']:focus,[type='radio']:focus{
211
- outline:2px solid transparent;outline-offset:2px;
212
- --tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;
213
- --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
214
- --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
215
- box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}
216
- [type='checkbox']:checked,[type='radio']:checked{
217
- border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}
218
- [type='checkbox']:checked{
219
- background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}
220
- [type='radio']:checked{
221
- background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}
222
- [type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
223
- border-color:transparent;background-color:currentColor}
224
- [type='checkbox']:indeterminate{
225
- background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
226
- border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}
227
- [type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{border-color:transparent;background-color:currentColor}
228
- [type='file']{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}
229
- [type='file']:focus{outline:1px auto -webkit-focus-ring-color;}
230
- [type='color']{height:2.4rem;padding:2px 3px}
231
- [type='range']{height:2.4rem}
232
- [type='button'],button[type='submit']{cursor:pointer}
353
+ [type='text'],
354
+ [type='email'],
355
+ [type='url'],
356
+ [type='password'],
357
+ [type='number'],
358
+ [type='date'],
359
+ [type='datetime-local'],
360
+ [type='month'],
361
+ [type='week'],
362
+ [type='search'],
363
+ [type='tel'],
364
+ [type='time'],
365
+ [type='color'],
366
+ [multiple],
367
+ textarea,
368
+ select {
369
+ -webkit-appearance: none;
370
+ -moz-appearance: none;
371
+ appearance: none;
372
+ background-color: #fff;
373
+ border-width: 1px;
374
+ padding: 0.5rem 0.75rem;
375
+ font-size: 1rem
376
+ }
377
+
378
+ .dark [type='text'],
379
+ .dark [type='email'],
380
+ .dark [type='url'],
381
+ .dark [type='password'],
382
+ .dark [type='number'],
383
+ .dark [type='date'],
384
+ .dark [type='datetime-local'],
385
+ .dark [type='month'],
386
+ .dark [type='week'],
387
+ .dark [type='search'],
388
+ .dark [type='tel'],
389
+ .dark [type='time'],
390
+ .dark [type='color'],
391
+ .dark [multiple],
392
+ .dark textarea,
393
+ .dark select {
394
+ background-color: var(--color-gray-800)
395
+ }
396
+
397
+ [type='text']:focus,
398
+ [type='email']:focus,
399
+ [type='url']:focus,
400
+ [type='password']:focus,
401
+ [type='number']:focus,
402
+ [type='date']:focus,
403
+ [type='datetime-local']:focus,
404
+ [type='month']:focus,
405
+ [type='week']:focus,
406
+ [type='search']:focus,
407
+ [type='tel']:focus,
408
+ [type='time']:focus,
409
+ [type='color']:focus,
410
+ [multiple]:focus,
411
+ textarea:focus,
412
+ select:focus {
413
+ outline: 2px solid transparent;
414
+ outline-offset: 2px;
415
+ --tw-ring-inset: var(--tw-empty,
416
+ /*!*/
417
+ /*!*/
418
+ );
419
+ --tw-ring-offset-width: 0px;
420
+ --tw-ring-offset-color: #fff;
421
+ --tw-ring-color: #2563eb;
422
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
423
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
424
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
425
+ border-color: #2563eb;
426
+ }
427
+
428
+ input::-moz-placeholder,
429
+ textarea::-moz-placeholder {
430
+ color: #6b7280;
431
+ opacity: 1
432
+ }
433
+
434
+ input:-ms-input-placeholder,
435
+ textarea:-ms-input-placeholder {
436
+ color: #6b7280;
437
+ opacity: 1
438
+ }
439
+
440
+ input::placeholder,
441
+ textarea::placeholder {
442
+ color: #6b7280;
443
+ opacity: 1
444
+ }
445
+
446
+ select {
447
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
448
+ background-position: right 0.5rem center;
449
+ background-repeat: no-repeat;
450
+ background-size: 1.5em 1.5em;
451
+ padding-right: 2.5rem;
452
+ -webkit-print-color-adjust: exact;
453
+ color-adjust: exact
454
+ }
455
+
456
+ [multiple] {
457
+ background-image: initial;
458
+ background-position: initial;
459
+ background-repeat: unset;
460
+ background-size: initial;
461
+ padding-right: 0.75rem;
462
+ -webkit-print-color-adjust: unset;
463
+ color-adjust: unset;
464
+ }
465
+
466
+ [type='checkbox'],
467
+ [type='radio'] {
468
+ -webkit-appearance: none;
469
+ -moz-appearance: none;
470
+ appearance: none;
471
+ padding: 0;
472
+ -webkit-print-color-adjust: exact;
473
+ color-adjust: exact;
474
+ display: inline-block;
475
+ vertical-align: middle;
476
+ background-origin: border-box;
477
+ -webkit-user-select: none;
478
+ -moz-user-select: none;
479
+ -ms-user-select: none;
480
+ user-select: none;
481
+ flex-shrink: 0;
482
+ height: 1rem;
483
+ width: 1rem;
484
+ color: #2563eb;
485
+ background-color: #fff;
486
+ border-width: 1px
487
+ }
488
+
489
+ [type='radio'] {
490
+ border-radius: 100%
491
+ }
492
+
493
+ [type='checkbox']:focus,
494
+ [type='radio']:focus {
495
+ outline: 2px solid transparent;
496
+ outline-offset: 2px;
497
+ --tw-ring-inset: var(--tw-empty,
498
+ /*!*/
499
+ /*!*/
500
+ );
501
+ --tw-ring-offset-width: 2px;
502
+ --tw-ring-offset-color: #fff;
503
+ --tw-ring-color: #2563eb;
504
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
505
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
506
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
507
+ }
508
+
509
+ [type='checkbox']:checked,
510
+ [type='radio']:checked {
511
+ border-color: transparent;
512
+ background-color: currentColor;
513
+ background-size: 100% 100%;
514
+ background-position: center;
515
+ background-repeat: no-repeat
516
+ }
517
+
518
+ [type='checkbox']:checked {
519
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")
520
+ }
521
+
522
+ [type='radio']:checked {
523
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")
524
+ }
525
+
526
+ [type='checkbox']:checked:hover,
527
+ [type='checkbox']:checked:focus,
528
+ [type='radio']:checked:hover,
529
+ [type='radio']:checked:focus {
530
+ border-color: transparent;
531
+ background-color: currentColor
532
+ }
533
+
534
+ [type='checkbox']:indeterminate {
535
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
536
+ border-color: transparent;
537
+ background-color: currentColor;
538
+ background-size: 100% 100%;
539
+ background-position: center;
540
+ background-repeat: no-repeat
541
+ }
542
+
543
+ [type='checkbox']:indeterminate:hover,
544
+ [type='checkbox']:indeterminate:focus {
545
+ border-color: transparent;
546
+ background-color: currentColor
547
+ }
548
+
549
+ [type='file'] {
550
+ background: unset;
551
+ border-color: inherit;
552
+ border-width: 0;
553
+ border-radius: 0;
554
+ padding: 0;
555
+ font-size: unset;
556
+ line-height: inherit
557
+ }
558
+
559
+ [type='file']:focus {
560
+ outline: 1px auto -webkit-focus-ring-color;
561
+ }
562
+
563
+ [type='color'] {
564
+ height: 2.4rem;
565
+ padding: 2px 3px
566
+ }
567
+
568
+ [type='range'] {
569
+ height: 2.4rem
570
+ }
571
+
572
+ [type='button'],
573
+ button[type='submit'] {
574
+ cursor: pointer
575
+ }
233
576
 
234
577
  @media (min-width: 640px) {
235
- [type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='week'],[type='search'],[type='tel'],[type='time'],[type='color'],[multiple],textarea,select {
578
+
579
+ [type='text'],
580
+ [type='email'],
581
+ [type='url'],
582
+ [type='password'],
583
+ [type='number'],
584
+ [type='date'],
585
+ [type='datetime-local'],
586
+ [type='month'],
587
+ [type='week'],
588
+ [type='search'],
589
+ [type='tel'],
590
+ [type='time'],
591
+ [type='color'],
592
+ [multiple],
593
+ textarea,
594
+ select {
236
595
  font-size: .875rem;
237
596
  line-height: 1.25rem;
238
597
  }
@@ -246,6 +605,7 @@
246
605
  transition: background-color 5000s ease-in-out 0s;
247
606
  -webkit-text-fill-color: #ffffff;
248
607
  }
608
+
249
609
  .dark input[data-autocompleted] {
250
610
  background-color: transparent !important;
251
611
  }
@@ -254,12 +614,14 @@
254
614
  .aspect-h-9 {
255
615
  --tw-aspect-h: 9;
256
616
  }
617
+
257
618
  .aspect-w-16 {
258
619
  position: relative;
259
620
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
260
621
  --tw-aspect-w: 16;
261
622
  }
262
- .aspect-w-16 > * {
623
+
624
+ .aspect-w-16>* {
263
625
  position: absolute;
264
626
  height: 100%;
265
627
  width: 100%;