singularity-components 0.1.151 → 0.1.193

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 (244) hide show
  1. package/README.md +29 -12
  2. package/dist/components/blocks/cards/blogpost-card.d.ts +9 -4
  3. package/dist/components/blocks/cards/blogpost-card.js +37 -23
  4. package/dist/components/blocks/cards/blogpost-card.js.map +1 -1
  5. package/dist/components/blocks/cards/card.js +1 -1
  6. package/dist/components/blocks/cards/card.js.map +1 -1
  7. package/dist/components/blocks/empty-state/EmptyState.d.ts +15 -0
  8. package/dist/components/blocks/empty-state/EmptyState.js +36 -0
  9. package/dist/components/blocks/empty-state/EmptyState.js.map +1 -0
  10. package/dist/components/blocks/index.d.ts +2 -0
  11. package/dist/components/blocks/index.js +4 -2
  12. package/dist/components/blocks/index.js.map +1 -1
  13. package/dist/components/blocks/post-list/post-filters.d.ts +19 -0
  14. package/dist/components/blocks/post-list/post-filters.js +99 -0
  15. package/dist/components/blocks/post-list/post-filters.js.map +1 -0
  16. package/dist/components/blocks/post-list/post-list-with-filters.d.ts +19 -0
  17. package/dist/components/blocks/post-list/post-list-with-filters.js +439 -0
  18. package/dist/components/blocks/post-list/post-list-with-filters.js.map +1 -0
  19. package/dist/components/index.d.ts +42 -12
  20. package/dist/components/index.js +5 -6
  21. package/dist/components/index.js.map +1 -1
  22. package/dist/components/pages/admin/admin-page.d.ts +8 -0
  23. package/dist/components/pages/admin/admin-page.js +299 -0
  24. package/dist/components/pages/admin/admin-page.js.map +1 -0
  25. package/dist/components/pages/blogpost/blogpost.js +440 -0
  26. package/dist/components/pages/blogpost/blogpost.js.map +1 -0
  27. package/dist/components/pages/category/category-page.d.ts +8 -0
  28. package/dist/components/pages/category/category-page.js +69 -0
  29. package/dist/components/pages/category/category-page.js.map +1 -0
  30. package/dist/components/pages/chat/chat-page.d.ts +5 -0
  31. package/dist/components/pages/chat/chat-page.js +209 -0
  32. package/dist/components/pages/chat/chat-page.js.map +1 -0
  33. package/dist/components/pages/index.d.ts +11 -0
  34. package/dist/components/pages/index.js +11 -0
  35. package/dist/components/pages/index.js.map +1 -0
  36. package/dist/components/pages/login/login-page.d.ts +19 -0
  37. package/dist/components/pages/login/login-page.js +108 -0
  38. package/dist/components/pages/login/login-page.js.map +1 -0
  39. package/dist/components/pages/maintenance/maintenance-page.d.ts +5 -0
  40. package/dist/components/pages/maintenance/maintenance-page.js +50 -0
  41. package/dist/components/pages/maintenance/maintenance-page.js.map +1 -0
  42. package/dist/components/pages/not-found/not-found.d.ts +10 -0
  43. package/dist/components/pages/not-found/not-found.js +64 -0
  44. package/dist/components/pages/not-found/not-found.js.map +1 -0
  45. package/dist/components/pages/privacy/privacy-page.d.ts +15 -0
  46. package/dist/components/pages/privacy/privacy-page.js +98 -0
  47. package/dist/components/pages/privacy/privacy-page.js.map +1 -0
  48. package/dist/components/pages/search/search-page.d.ts +5 -0
  49. package/dist/components/pages/search/search-page.js +18 -0
  50. package/dist/components/pages/search/search-page.js.map +1 -0
  51. package/dist/components/pages/startpage/startpage.js +50 -0
  52. package/dist/components/pages/startpage/startpage.js.map +1 -0
  53. package/dist/components/pages/terms/terms-page.d.ts +15 -0
  54. package/dist/components/pages/terms/terms-page.js +98 -0
  55. package/dist/components/pages/terms/terms-page.js.map +1 -0
  56. package/dist/components/primitives/accordion/accordion.js +1 -1
  57. package/dist/components/primitives/accordion/accordion.js.map +1 -1
  58. package/dist/components/primitives/alert/alert.js +1 -1
  59. package/dist/components/primitives/alert/alert.js.map +1 -1
  60. package/dist/components/primitives/avatar/avatar.d.ts +14 -0
  61. package/dist/components/primitives/avatar/avatar.js +103 -0
  62. package/dist/components/primitives/avatar/avatar.js.map +1 -0
  63. package/dist/components/primitives/badge/badge.d.ts +1 -1
  64. package/dist/components/primitives/badge/badge.js +5 -5
  65. package/dist/components/primitives/badge/badge.js.map +1 -1
  66. package/dist/components/primitives/badge/badges.js +1 -1
  67. package/dist/components/primitives/badge/badges.js.map +1 -1
  68. package/dist/components/primitives/{button → buttons}/button.d.ts +8 -7
  69. package/dist/components/primitives/{button → buttons}/button.js +19 -14
  70. package/dist/components/primitives/buttons/button.js.map +1 -0
  71. package/dist/components/primitives/buttons/icon-button.d.ts +33 -0
  72. package/dist/components/primitives/buttons/icon-button.js +61 -0
  73. package/dist/components/primitives/buttons/icon-button.js.map +1 -0
  74. package/dist/components/primitives/{link → buttons}/link-button.d.ts +7 -4
  75. package/dist/components/primitives/buttons/link-button.js +35 -0
  76. package/dist/components/primitives/buttons/link-button.js.map +1 -0
  77. package/dist/components/primitives/collapsible/collapsible.d.ts +9 -0
  78. package/dist/components/primitives/collapsible/collapsible.js +53 -0
  79. package/dist/components/primitives/collapsible/collapsible.js.map +1 -0
  80. package/dist/components/primitives/dropdown-menu/dropdown-menu.d.ts +30 -0
  81. package/dist/components/primitives/dropdown-menu/dropdown-menu.js +164 -0
  82. package/dist/components/primitives/dropdown-menu/dropdown-menu.js.map +1 -0
  83. package/dist/components/primitives/forms/checkbox.d.ts +6 -0
  84. package/dist/components/primitives/forms/checkbox.js +30 -0
  85. package/dist/components/primitives/forms/checkbox.js.map +1 -0
  86. package/dist/components/primitives/forms/field.d.ts +29 -0
  87. package/dist/components/primitives/forms/field.js +218 -0
  88. package/dist/components/primitives/forms/field.js.map +1 -0
  89. package/dist/components/primitives/forms/input.d.ts +6 -0
  90. package/dist/components/primitives/forms/input.js +22 -0
  91. package/dist/components/primitives/forms/input.js.map +1 -0
  92. package/dist/components/primitives/forms/select.d.ts +22 -0
  93. package/dist/components/primitives/forms/select.js +169 -0
  94. package/dist/components/primitives/forms/select.js.map +1 -0
  95. package/dist/components/primitives/forms/textarea.d.ts +6 -0
  96. package/dist/components/primitives/forms/textarea.js +20 -0
  97. package/dist/components/primitives/forms/textarea.js.map +1 -0
  98. package/dist/components/primitives/icon/icon.d.ts +9 -2
  99. package/dist/components/primitives/icon/icon.js +10 -3
  100. package/dist/components/primitives/icon/icon.js.map +1 -1
  101. package/dist/components/primitives/index.d.ts +23 -7
  102. package/dist/components/primitives/index.js +31 -20
  103. package/dist/components/primitives/index.js.map +1 -1
  104. package/dist/components/primitives/label/label.d.ts +6 -0
  105. package/dist/components/primitives/label/label.js +22 -0
  106. package/dist/components/primitives/label/label.js.map +1 -0
  107. package/dist/components/primitives/layout/layout.d.ts +6 -3
  108. package/dist/components/primitives/layout/layout.js +28 -11
  109. package/dist/components/primitives/layout/layout.js.map +1 -1
  110. package/dist/components/primitives/link/link.d.ts +11 -5
  111. package/dist/components/primitives/link/link.js +38 -11
  112. package/dist/components/primitives/link/link.js.map +1 -1
  113. package/dist/components/primitives/separator/separator.js +1 -1
  114. package/dist/components/primitives/separator/separator.js.map +1 -1
  115. package/dist/components/primitives/sheet/sheet.d.ts +29 -0
  116. package/dist/components/primitives/sheet/sheet.js +117 -0
  117. package/dist/components/primitives/sheet/sheet.js.map +1 -0
  118. package/dist/components/primitives/skeleton/skeleton.js +1 -1
  119. package/dist/components/primitives/skeleton/skeleton.js.map +1 -1
  120. package/dist/components/primitives/sonner/sonner.d.ts +7 -0
  121. package/dist/components/primitives/sonner/sonner.js +42 -0
  122. package/dist/components/primitives/sonner/sonner.js.map +1 -0
  123. package/dist/components/primitives/sonner/use-toast.d.ts +24 -0
  124. package/dist/components/primitives/sonner/use-toast.js +21 -0
  125. package/dist/components/primitives/sonner/use-toast.js.map +1 -0
  126. package/dist/components/primitives/spinner/spinner.js +1 -1
  127. package/dist/components/primitives/spinner/spinner.js.map +1 -1
  128. package/dist/components/primitives/stack/stack.d.ts +3 -0
  129. package/dist/components/primitives/stack/stack.js +34 -4
  130. package/dist/components/primitives/stack/stack.js.map +1 -1
  131. package/dist/components/primitives/text/{text-heading.d.ts → heading.d.ts} +5 -5
  132. package/dist/components/primitives/text/{text-heading.js → heading.js} +11 -11
  133. package/dist/components/primitives/text/heading.js.map +1 -0
  134. package/dist/components/primitives/text/internal/text-element.d.ts +7 -3
  135. package/dist/components/primitives/text/internal/text-element.js +4 -2
  136. package/dist/components/primitives/text/internal/text-element.js.map +1 -1
  137. package/dist/components/primitives/text/text-code.d.ts +26 -0
  138. package/dist/components/primitives/text/text-code.js +44 -0
  139. package/dist/components/primitives/text/text-code.js.map +1 -0
  140. package/dist/components/primitives/text/text-div.js +2 -2
  141. package/dist/components/primitives/text/text-div.js.map +1 -1
  142. package/dist/components/primitives/text/text-span.js +2 -2
  143. package/dist/components/primitives/text/text-span.js.map +1 -1
  144. package/dist/components/primitives/text/text-time.js +2 -2
  145. package/dist/components/primitives/text/text-time.js.map +1 -1
  146. package/dist/components/primitives/text/{text-paragraph.d.ts → text.d.ts} +4 -4
  147. package/dist/components/primitives/text/{text-paragraph.js → text.js} +11 -11
  148. package/dist/components/primitives/text/text.js.map +1 -0
  149. package/dist/components/primitives/{ui-image.d.ts → ui-image/ui-image.d.ts} +1 -1
  150. package/dist/components/primitives/{ui-image.js → ui-image/ui-image.js} +3 -3
  151. package/dist/components/primitives/ui-image/ui-image.js.map +1 -0
  152. package/dist/components/primitives/ui-link/ui-link.d.ts +8 -0
  153. package/dist/components/primitives/ui-link/ui-link.js +19 -0
  154. package/dist/components/primitives/ui-link/ui-link.js.map +1 -0
  155. package/dist/components/providers/LinkContext.d.ts +1 -1
  156. package/dist/components/providers/LinkContext.js +1 -1
  157. package/dist/components/providers/LinkContext.js.map +1 -1
  158. package/dist/components/providers/SingularityContext.d.ts +4 -1
  159. package/dist/components/providers/SingularityContext.js +7 -3
  160. package/dist/components/providers/SingularityContext.js.map +1 -1
  161. package/dist/components/providers/auth-provider.d.ts +15 -0
  162. package/dist/components/providers/auth-provider.js +30 -0
  163. package/dist/components/providers/auth-provider.js.map +1 -0
  164. package/dist/components/providers/index.d.ts +3 -0
  165. package/dist/components/providers/index.js +5 -3
  166. package/dist/components/providers/index.js.map +1 -1
  167. package/dist/components/providers/theme-provider.d.ts +27 -0
  168. package/dist/components/providers/theme-provider.js +75 -0
  169. package/dist/components/providers/theme-provider.js.map +1 -0
  170. package/dist/components/templates/container/container.d.ts +20 -0
  171. package/dist/components/templates/container/container.js +58 -0
  172. package/dist/components/templates/container/container.js.map +1 -0
  173. package/dist/components/templates/footer/footer.d.ts +5 -0
  174. package/dist/components/templates/footer/footer.js +12 -0
  175. package/dist/components/templates/footer/footer.js.map +1 -0
  176. package/dist/components/templates/form/form.d.ts +5 -0
  177. package/dist/components/templates/form/form.js +141 -0
  178. package/dist/components/templates/form/form.js.map +1 -0
  179. package/dist/components/templates/hero/hero.d.ts +18 -0
  180. package/dist/components/{sections → templates}/hero/hero.js +52 -22
  181. package/dist/components/templates/hero/hero.js.map +1 -0
  182. package/dist/components/templates/index.d.ts +4 -2
  183. package/dist/components/templates/index.js +4 -2
  184. package/dist/components/templates/index.js.map +1 -1
  185. package/dist/components/templates/navigation/header.d.ts +19 -0
  186. package/dist/components/templates/navigation/header.js +222 -0
  187. package/dist/components/templates/navigation/header.js.map +1 -0
  188. package/dist/components/templates/navigation/index.d.ts +3 -0
  189. package/dist/components/templates/navigation/index.js +2 -0
  190. package/dist/components/templates/navigation/index.js.map +1 -0
  191. package/dist/css/variables.css +2 -2
  192. package/dist/css/variables.css.map +1 -1
  193. package/dist/data/authors.d.ts +12 -0
  194. package/dist/data/authors.js +33 -0
  195. package/dist/data/authors.js.map +1 -0
  196. package/dist/data/posts.d.ts +5 -3
  197. package/dist/data/posts.js +66 -47
  198. package/dist/data/posts.js.map +1 -1
  199. package/dist/index.d.ts +42 -12
  200. package/dist/index.js +1 -1
  201. package/dist/index.js.map +1 -1
  202. package/dist/lib/helpers/index.js +1 -1
  203. package/dist/lib/helpers/index.js.map +1 -1
  204. package/dist/lib/index.js +2 -2
  205. package/dist/lib/index.js.map +1 -1
  206. package/dist/lib/types.d.ts +4 -8
  207. package/dist/main.css +1528 -85
  208. package/dist/main.css.map +1 -1
  209. package/dist/{utils.js → utils/index.js} +1 -1
  210. package/dist/utils/index.js.map +1 -0
  211. package/dist/utils/index.test.js +37 -0
  212. package/dist/utils/index.test.js.map +1 -0
  213. package/package.json +69 -44
  214. package/dist/components/primitives/button/button.js.map +0 -1
  215. package/dist/components/primitives/link/link-button.js +0 -21
  216. package/dist/components/primitives/link/link-button.js.map +0 -1
  217. package/dist/components/primitives/text/text-heading.js.map +0 -1
  218. package/dist/components/primitives/text/text-paragraph.js.map +0 -1
  219. package/dist/components/primitives/ui-image.js.map +0 -1
  220. package/dist/components/primitives/ui-link.d.ts +0 -8
  221. package/dist/components/primitives/ui-link.js +0 -16
  222. package/dist/components/primitives/ui-link.js.map +0 -1
  223. package/dist/components/sections/body/body.d.ts +0 -19
  224. package/dist/components/sections/body/body.js +0 -49
  225. package/dist/components/sections/body/body.js.map +0 -1
  226. package/dist/components/sections/footer/footer.d.ts +0 -12
  227. package/dist/components/sections/footer/footer.js +0 -59
  228. package/dist/components/sections/footer/footer.js.map +0 -1
  229. package/dist/components/sections/hero/hero.d.ts +0 -6
  230. package/dist/components/sections/hero/hero.js.map +0 -1
  231. package/dist/components/sections/index.d.ts +0 -3
  232. package/dist/components/sections/index.js +0 -4
  233. package/dist/components/sections/index.js.map +0 -1
  234. package/dist/components/templates/blogpost/blogpost.js +0 -173
  235. package/dist/components/templates/blogpost/blogpost.js.map +0 -1
  236. package/dist/components/templates/startpage/startpage.js +0 -48
  237. package/dist/components/templates/startpage/startpage.js.map +0 -1
  238. package/dist/components/units/index.js +0 -1
  239. package/dist/components/units/index.js.map +0 -1
  240. package/dist/utils.js.map +0 -1
  241. /package/dist/components/{templates → pages}/blogpost/blogpost.d.ts +0 -0
  242. /package/dist/components/{templates → pages}/startpage/startpage.d.ts +0 -0
  243. /package/dist/{utils.d.ts → utils/index.d.ts} +0 -0
  244. /package/dist/{components/units/index.d.ts → utils/index.test.d.ts} +0 -0
package/dist/main.css CHANGED
@@ -1,9 +1,9 @@
1
- /*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  :root {
4
4
  --sg-black: oklch(0.25 0 0);
5
5
  --sg-charcoal: oklch(0.35 0.01 60);
6
- --sg-ash: oklch(0.55 0 0);
6
+ --sg-ash: oklch(0.44 0 0);
7
7
  --sg-silver: oklch(0.78 0.01 60);
8
8
  --sg-fog: oklch(0.92 0.005 240);
9
9
  --sg-cream: oklch(0.97 0.01 80);
@@ -19,7 +19,7 @@
19
19
  --sg-night: oklch(0.22 0.01 60);
20
20
  --sg-onyx: oklch(0.28 0 0);
21
21
  --sg-slate: oklch(0.43 0 0);
22
- --sg-dove: oklch(0.7 0.01 60);
22
+ --sg-dove: oklch(0.82 0.01 60);
23
23
  --sg-cloud: oklch(0.88 0.01 60);
24
24
  --sg-background: var(--sg-cream);
25
25
  --sg-foreground: var(--sg-black);
@@ -84,7 +84,11 @@
84
84
  :root,
85
85
  :host {
86
86
  --sg-spacing: 0.25rem;
87
+ --sg-container-sm: 24rem;
88
+ --sg-container-md: 28rem;
89
+ --sg-container-lg: 32rem;
87
90
  --sg-container-xl: 36rem;
91
+ --sg-container-2xl: 42rem;
88
92
  --sg-text-xs: 0.75rem;
89
93
  --sg-text-xs--line-height: calc(1 / 0.75);
90
94
  --sg-text-sm: 0.875rem;
@@ -108,13 +112,17 @@
108
112
  --sg-font-weight-semibold: 600;
109
113
  --sg-font-weight-bold: 700;
110
114
  --sg-tracking-tight: -0.025em;
115
+ --sg-tracking-wider: 0.05em;
116
+ --sg-tracking-widest: 0.1em;
111
117
  --sg-leading-tight: 1.25;
112
118
  --sg-leading-snug: 1.375;
113
119
  --sg-leading-normal: 1.5;
114
120
  --sg-leading-relaxed: 1.625;
115
121
  --sg-ease-out: cubic-bezier(0, 0, 0.2, 1);
122
+ --sg-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
116
123
  --sg-animate-spin: spin 1s linear infinite;
117
124
  --sg-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
125
+ --sg-animate-bounce: bounce 1s infinite;
118
126
  --sg-default-transition-duration: 150ms;
119
127
  --sg-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
120
128
  --sg-default-font-family: var(--font-sans);
@@ -315,36 +323,99 @@
315
323
  container-type: inline-size;
316
324
  container-name: card-header;
317
325
  }
326
+ .sg\:\@container\/field-group {
327
+ container-type: inline-size;
328
+ container-name: field-group;
329
+ }
318
330
  .sg\:pointer-events-none {
319
331
  pointer-events: none;
320
332
  }
333
+ .sg\:sr-only {
334
+ position: absolute;
335
+ width: 1px;
336
+ height: 1px;
337
+ padding: 0;
338
+ margin: -1px;
339
+ overflow: hidden;
340
+ clip-path: inset(50%);
341
+ white-space: nowrap;
342
+ border-width: 0;
343
+ }
321
344
  .sg\:absolute {
322
345
  position: absolute;
323
346
  }
347
+ .sg\:fixed {
348
+ position: fixed;
349
+ }
324
350
  .sg\:relative {
325
351
  position: relative;
326
352
  }
353
+ .sg\:sticky {
354
+ position: sticky;
355
+ }
327
356
  .sg\:inset-0 {
328
357
  inset: calc(var(--sg-spacing) * 0);
329
358
  }
359
+ .sg\:inset-x-0 {
360
+ inset-inline: calc(var(--sg-spacing) * 0);
361
+ }
362
+ .sg\:inset-y-0 {
363
+ inset-block: calc(var(--sg-spacing) * 0);
364
+ }
330
365
  .sg\:end-3 {
331
366
  inset-inline-end: calc(var(--sg-spacing) * 3);
332
367
  }
368
+ .sg\:-top-1\.5 {
369
+ top: calc(var(--sg-spacing) * -1.5);
370
+ }
371
+ .sg\:top-0 {
372
+ top: calc(var(--sg-spacing) * 0);
373
+ }
374
+ .sg\:top-1\/2 {
375
+ top: calc(1 / 2 * 100%);
376
+ }
333
377
  .sg\:top-2\.5 {
334
378
  top: calc(var(--sg-spacing) * 2.5);
335
379
  }
380
+ .sg\:top-4 {
381
+ top: calc(var(--sg-spacing) * 4);
382
+ }
383
+ .sg\:top-24 {
384
+ top: calc(var(--sg-spacing) * 24);
385
+ }
386
+ .sg\:-right-1\.5 {
387
+ right: calc(var(--sg-spacing) * -1.5);
388
+ }
336
389
  .sg\:right-0 {
337
390
  right: calc(var(--sg-spacing) * 0);
338
391
  }
392
+ .sg\:right-4 {
393
+ right: calc(var(--sg-spacing) * 4);
394
+ }
339
395
  .sg\:bottom-0 {
340
396
  bottom: calc(var(--sg-spacing) * 0);
341
397
  }
342
398
  .sg\:left-0 {
343
399
  left: calc(var(--sg-spacing) * 0);
344
400
  }
401
+ .sg\:left-2 {
402
+ left: calc(var(--sg-spacing) * 2);
403
+ }
404
+ .sg\:left-3 {
405
+ left: calc(var(--sg-spacing) * 3);
406
+ }
407
+ .sg\:isolate {
408
+ isolation: isolate;
409
+ }
345
410
  .sg\:z-1 {
346
411
  z-index: 1;
347
412
  }
413
+ .sg\:z-10 {
414
+ z-index: 10;
415
+ }
416
+ .sg\:z-50 {
417
+ z-index: 50;
418
+ }
348
419
  .sg\:col-start-2 {
349
420
  grid-column-start: 2;
350
421
  }
@@ -354,18 +425,51 @@
354
425
  .sg\:row-start-1 {
355
426
  grid-row-start: 1;
356
427
  }
428
+ .sg\:container {
429
+ width: 100%;
430
+ @media (width >= 40rem) {
431
+ max-width: 40rem;
432
+ }
433
+ @media (width >= 48rem) {
434
+ max-width: 48rem;
435
+ }
436
+ @media (width >= 64rem) {
437
+ max-width: 64rem;
438
+ }
439
+ @media (width >= 80rem) {
440
+ max-width: 80rem;
441
+ }
442
+ @media (width >= 96rem) {
443
+ max-width: 96rem;
444
+ }
445
+ }
446
+ .sg\:-mx-1 {
447
+ margin-inline: calc(var(--sg-spacing) * -1);
448
+ }
357
449
  .sg\:-mx-4 {
358
450
  margin-inline: calc(var(--sg-spacing) * -4);
359
451
  }
360
452
  .sg\:mx-auto {
361
453
  margin-inline: auto;
362
454
  }
455
+ .sg\:-my-2 {
456
+ margin-block: calc(var(--sg-spacing) * -2);
457
+ }
458
+ .sg\:my-1 {
459
+ margin-block: calc(var(--sg-spacing) * 1);
460
+ }
363
461
  .sg\:my-4 {
364
462
  margin-block: calc(var(--sg-spacing) * 4);
365
463
  }
464
+ .sg\:mt-0\.5 {
465
+ margin-top: calc(var(--sg-spacing) * 0.5);
466
+ }
366
467
  .sg\:mt-1 {
367
468
  margin-top: calc(var(--sg-spacing) * 1);
368
469
  }
470
+ .sg\:mt-1\.5 {
471
+ margin-top: calc(var(--sg-spacing) * 1.5);
472
+ }
369
473
  .sg\:mt-2 {
370
474
  margin-top: calc(var(--sg-spacing) * 2);
371
475
  }
@@ -375,12 +479,18 @@
375
479
  .sg\:mt-4 {
376
480
  margin-top: calc(var(--sg-spacing) * 4);
377
481
  }
482
+ .sg\:mt-5 {
483
+ margin-top: calc(var(--sg-spacing) * 5);
484
+ }
378
485
  .sg\:mt-6 {
379
486
  margin-top: calc(var(--sg-spacing) * 6);
380
487
  }
381
488
  .sg\:mt-8 {
382
489
  margin-top: calc(var(--sg-spacing) * 8);
383
490
  }
491
+ .sg\:mt-10 {
492
+ margin-top: calc(var(--sg-spacing) * 10);
493
+ }
384
494
  .sg\:mt-12 {
385
495
  margin-top: calc(var(--sg-spacing) * 12);
386
496
  }
@@ -390,9 +500,21 @@
390
500
  .sg\:mt-auto {
391
501
  margin-top: auto;
392
502
  }
503
+ .sg\:mr-1 {
504
+ margin-right: calc(var(--sg-spacing) * 1);
505
+ }
506
+ .sg\:mr-2 {
507
+ margin-right: calc(var(--sg-spacing) * 2);
508
+ }
393
509
  .sg\:mb-1 {
394
510
  margin-bottom: calc(var(--sg-spacing) * 1);
395
511
  }
512
+ .sg\:mb-2 {
513
+ margin-bottom: calc(var(--sg-spacing) * 2);
514
+ }
515
+ .sg\:mb-3 {
516
+ margin-bottom: calc(var(--sg-spacing) * 3);
517
+ }
396
518
  .sg\:mb-4 {
397
519
  margin-bottom: calc(var(--sg-spacing) * 4);
398
520
  }
@@ -405,9 +527,27 @@
405
527
  .sg\:mb-10 {
406
528
  margin-bottom: calc(var(--sg-spacing) * 10);
407
529
  }
530
+ .sg\:mb-12 {
531
+ margin-bottom: calc(var(--sg-spacing) * 12);
532
+ }
533
+ .sg\:ml-1 {
534
+ margin-left: calc(var(--sg-spacing) * 1);
535
+ }
536
+ .sg\:ml-4 {
537
+ margin-left: calc(var(--sg-spacing) * 4);
538
+ }
408
539
  .sg\:ml-6 {
409
540
  margin-left: calc(var(--sg-spacing) * 6);
410
541
  }
542
+ .sg\:ml-auto {
543
+ margin-left: auto;
544
+ }
545
+ .sg\:line-clamp-1 {
546
+ overflow: hidden;
547
+ display: -webkit-box;
548
+ -webkit-box-orient: vertical;
549
+ -webkit-line-clamp: 1;
550
+ }
411
551
  .sg\:line-clamp-2 {
412
552
  overflow: hidden;
413
553
  display: -webkit-box;
@@ -426,15 +566,15 @@
426
566
  .sg\:hidden {
427
567
  display: none;
428
568
  }
429
- .sg\:inline-block {
430
- display: inline-block;
431
- }
432
569
  .sg\:inline-flex {
433
570
  display: inline-flex;
434
571
  }
435
572
  .sg\:aspect-16\/10 {
436
573
  aspect-ratio: 16/10;
437
574
  }
575
+ .sg\:aspect-square {
576
+ aspect-ratio: 1 / 1;
577
+ }
438
578
  .sg\:size-3 {
439
579
  width: calc(var(--sg-spacing) * 3);
440
580
  height: calc(var(--sg-spacing) * 3);
@@ -471,9 +611,35 @@
471
611
  width: calc(var(--sg-spacing) * 10);
472
612
  height: calc(var(--sg-spacing) * 10);
473
613
  }
614
+ .sg\:size-12 {
615
+ width: calc(var(--sg-spacing) * 12);
616
+ height: calc(var(--sg-spacing) * 12);
617
+ }
618
+ .sg\:size-16 {
619
+ width: calc(var(--sg-spacing) * 16);
620
+ height: calc(var(--sg-spacing) * 16);
621
+ }
474
622
  .sg\:h-\(--accordion-panel-height\) {
475
623
  height: var(--accordion-panel-height);
476
624
  }
625
+ .sg\:h-1 {
626
+ height: calc(var(--sg-spacing) * 1);
627
+ }
628
+ .sg\:h-2 {
629
+ height: calc(var(--sg-spacing) * 2);
630
+ }
631
+ .sg\:h-3\.5 {
632
+ height: calc(var(--sg-spacing) * 3.5);
633
+ }
634
+ .sg\:h-4 {
635
+ height: calc(var(--sg-spacing) * 4);
636
+ }
637
+ .sg\:h-5 {
638
+ height: calc(var(--sg-spacing) * 5);
639
+ }
640
+ .sg\:h-6 {
641
+ height: calc(var(--sg-spacing) * 6);
642
+ }
477
643
  .sg\:h-8 {
478
644
  height: calc(var(--sg-spacing) * 8);
479
645
  }
@@ -483,6 +649,12 @@
483
649
  .sg\:h-10 {
484
650
  height: calc(var(--sg-spacing) * 10);
485
651
  }
652
+ .sg\:h-14 {
653
+ height: calc(var(--sg-spacing) * 14);
654
+ }
655
+ .sg\:h-16 {
656
+ height: calc(var(--sg-spacing) * 16);
657
+ }
486
658
  .sg\:h-32 {
487
659
  height: calc(var(--sg-spacing) * 32);
488
660
  }
@@ -516,6 +688,75 @@
516
688
  .sg\:h-full {
517
689
  height: 100%;
518
690
  }
691
+ .sg\:h-px {
692
+ height: 1px;
693
+ }
694
+ .sg\:max-h-\(--available-height\) {
695
+ max-height: var(--available-height);
696
+ }
697
+ .sg\:min-h-0 {
698
+ min-height: calc(var(--sg-spacing) * 0);
699
+ }
700
+ .sg\:min-h-\[60vh\] {
701
+ min-height: 60vh;
702
+ }
703
+ .sg\:min-h-\[80px\] {
704
+ min-height: 80px;
705
+ }
706
+ .sg\:min-h-\[200px\] {
707
+ min-height: 200px;
708
+ }
709
+ .sg\:min-h-screen {
710
+ min-height: 100vh;
711
+ }
712
+ .sg\:w-\(--anchor-width\) {
713
+ width: var(--anchor-width);
714
+ }
715
+ .sg\:w-1 {
716
+ width: calc(var(--sg-spacing) * 1);
717
+ }
718
+ .sg\:w-1\/2 {
719
+ width: calc(1 / 2 * 100%);
720
+ }
721
+ .sg\:w-2 {
722
+ width: calc(var(--sg-spacing) * 2);
723
+ }
724
+ .sg\:w-3\.5 {
725
+ width: calc(var(--sg-spacing) * 3.5);
726
+ }
727
+ .sg\:w-3\/4 {
728
+ width: calc(3 / 4 * 100%);
729
+ }
730
+ .sg\:w-4 {
731
+ width: calc(var(--sg-spacing) * 4);
732
+ }
733
+ .sg\:w-5 {
734
+ width: calc(var(--sg-spacing) * 5);
735
+ }
736
+ .sg\:w-8 {
737
+ width: calc(var(--sg-spacing) * 8);
738
+ }
739
+ .sg\:w-10 {
740
+ width: calc(var(--sg-spacing) * 10);
741
+ }
742
+ .sg\:w-12 {
743
+ width: calc(var(--sg-spacing) * 12);
744
+ }
745
+ .sg\:w-14 {
746
+ width: calc(var(--sg-spacing) * 14);
747
+ }
748
+ .sg\:w-32 {
749
+ width: calc(var(--sg-spacing) * 32);
750
+ }
751
+ .sg\:w-56 {
752
+ width: calc(var(--sg-spacing) * 56);
753
+ }
754
+ .sg\:w-64 {
755
+ width: calc(var(--sg-spacing) * 64);
756
+ }
757
+ .sg\:w-72 {
758
+ width: calc(var(--sg-spacing) * 72);
759
+ }
519
760
  .sg\:w-87\.5 {
520
761
  width: calc(var(--sg-spacing) * 87.5);
521
762
  }
@@ -537,21 +778,88 @@
537
778
  .sg\:w-\[100px\] {
538
779
  width: 100px;
539
780
  }
781
+ .sg\:w-\[180px\] {
782
+ width: 180px;
783
+ }
784
+ .sg\:w-\[280px\] {
785
+ width: 280px;
786
+ }
787
+ .sg\:w-\[350px\] {
788
+ width: 350px;
789
+ }
790
+ .sg\:w-fit {
791
+ width: fit-content;
792
+ }
540
793
  .sg\:w-full {
541
794
  width: 100%;
542
795
  }
796
+ .sg\:max-w-2xl {
797
+ max-width: var(--sg-container-2xl);
798
+ }
799
+ .sg\:max-w-\[85\%\] {
800
+ max-width: 85%;
801
+ }
802
+ .sg\:max-w-\[410px\] {
803
+ max-width: 410px;
804
+ }
543
805
  .sg\:max-w-\[768px\] {
544
806
  max-width: 768px;
545
807
  }
808
+ .sg\:max-w-\[1024px\] {
809
+ max-width: 1024px;
810
+ }
811
+ .sg\:max-w-lg {
812
+ max-width: var(--sg-container-lg);
813
+ }
814
+ .sg\:max-w-md {
815
+ max-width: var(--sg-container-md);
816
+ }
817
+ .sg\:max-w-sm {
818
+ max-width: var(--sg-container-sm);
819
+ }
546
820
  .sg\:max-w-xl {
547
821
  max-width: var(--sg-container-xl);
548
822
  }
823
+ .sg\:min-w-0 {
824
+ min-width: calc(var(--sg-spacing) * 0);
825
+ }
826
+ .sg\:min-w-6 {
827
+ min-width: calc(var(--sg-spacing) * 6);
828
+ }
829
+ .sg\:min-w-8 {
830
+ min-width: calc(var(--sg-spacing) * 8);
831
+ }
832
+ .sg\:min-w-9 {
833
+ min-width: calc(var(--sg-spacing) * 9);
834
+ }
835
+ .sg\:min-w-10 {
836
+ min-width: calc(var(--sg-spacing) * 10);
837
+ }
838
+ .sg\:min-w-32 {
839
+ min-width: calc(var(--sg-spacing) * 32);
840
+ }
841
+ .sg\:min-w-36 {
842
+ min-width: calc(var(--sg-spacing) * 36);
843
+ }
549
844
  .sg\:flex-1 {
550
845
  flex: 1;
551
846
  }
552
847
  .sg\:shrink-0 {
553
848
  flex-shrink: 0;
554
849
  }
850
+ .sg\:grow {
851
+ flex-grow: 1;
852
+ }
853
+ .sg\:origin-\(--transform-origin\) {
854
+ transform-origin: var(--transform-origin);
855
+ }
856
+ .sg\:-translate-y-1\/2 {
857
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
858
+ translate: var(--tw-translate-x) var(--tw-translate-y);
859
+ }
860
+ .sg\:animate-bounce {
861
+ animation: var(--sg-animate-bounce);
862
+ }
555
863
  .sg\:animate-pulse {
556
864
  animation: var(--sg-animate-pulse);
557
865
  }
@@ -561,6 +869,12 @@
561
869
  .sg\:cursor-crosshair {
562
870
  cursor: crosshair;
563
871
  }
872
+ .sg\:cursor-default {
873
+ cursor: default;
874
+ }
875
+ .sg\:cursor-pointer {
876
+ cursor: pointer;
877
+ }
564
878
  .sg\:list-decimal {
565
879
  list-style-type: decimal;
566
880
  }
@@ -576,6 +890,9 @@
576
890
  .sg\:grid-cols-2 {
577
891
  grid-template-columns: repeat(2, minmax(0, 1fr));
578
892
  }
893
+ .sg\:grid-cols-\[repeat\(auto-fill\,minmax\(210px\,1fr\)\)\] {
894
+ grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
895
+ }
579
896
  .sg\:grid-cols-\[repeat\(auto-fit\,minmax\(min\(230px\,100\%\)\,1fr\)\)\] {
580
897
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
581
898
  }
@@ -594,9 +911,18 @@
594
911
  .sg\:flex-col {
595
912
  flex-direction: column;
596
913
  }
914
+ .sg\:flex-col-reverse {
915
+ flex-direction: column-reverse;
916
+ }
597
917
  .sg\:flex-row {
598
918
  flex-direction: row;
599
919
  }
920
+ .sg\:flex-row-reverse {
921
+ flex-direction: row-reverse;
922
+ }
923
+ .sg\:flex-nowrap {
924
+ flex-wrap: nowrap;
925
+ }
600
926
  .sg\:flex-wrap {
601
927
  flex-wrap: wrap;
602
928
  }
@@ -615,6 +941,12 @@
615
941
  .sg\:justify-center {
616
942
  justify-content: center;
617
943
  }
944
+ .sg\:justify-end {
945
+ justify-content: flex-end;
946
+ }
947
+ .sg\:justify-start {
948
+ justify-content: flex-start;
949
+ }
618
950
  .sg\:gap-0\.5 {
619
951
  gap: calc(var(--sg-spacing) * 0.5);
620
952
  }
@@ -676,6 +1008,13 @@
676
1008
  margin-block-end: calc(calc(var(--sg-spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
677
1009
  }
678
1010
  }
1011
+ .sg\:space-y-1\.5 {
1012
+ :where(& > :not(:last-child)) {
1013
+ --tw-space-y-reverse: 0;
1014
+ margin-block-start: calc(calc(var(--sg-spacing) * 1.5) * var(--tw-space-y-reverse));
1015
+ margin-block-end: calc(calc(var(--sg-spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
1016
+ }
1017
+ }
679
1018
  .sg\:space-y-2 {
680
1019
  :where(& > :not(:last-child)) {
681
1020
  --tw-space-y-reverse: 0;
@@ -683,6 +1022,13 @@
683
1022
  margin-block-end: calc(calc(var(--sg-spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
684
1023
  }
685
1024
  }
1025
+ .sg\:space-y-3 {
1026
+ :where(& > :not(:last-child)) {
1027
+ --tw-space-y-reverse: 0;
1028
+ margin-block-start: calc(calc(var(--sg-spacing) * 3) * var(--tw-space-y-reverse));
1029
+ margin-block-end: calc(calc(var(--sg-spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
1030
+ }
1031
+ }
686
1032
  .sg\:space-y-4 {
687
1033
  :where(& > :not(:last-child)) {
688
1034
  --tw-space-y-reverse: 0;
@@ -690,15 +1036,50 @@
690
1036
  margin-block-end: calc(calc(var(--sg-spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
691
1037
  }
692
1038
  }
1039
+ .sg\:space-y-6 {
1040
+ :where(& > :not(:last-child)) {
1041
+ --tw-space-y-reverse: 0;
1042
+ margin-block-start: calc(calc(var(--sg-spacing) * 6) * var(--tw-space-y-reverse));
1043
+ margin-block-end: calc(calc(var(--sg-spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
1044
+ }
1045
+ }
1046
+ .sg\:space-y-8 {
1047
+ :where(& > :not(:last-child)) {
1048
+ --tw-space-y-reverse: 0;
1049
+ margin-block-start: calc(calc(var(--sg-spacing) * 8) * var(--tw-space-y-reverse));
1050
+ margin-block-end: calc(calc(var(--sg-spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
1051
+ }
1052
+ }
1053
+ .sg\:-space-x-2 {
1054
+ :where(& > :not(:last-child)) {
1055
+ --tw-space-x-reverse: 0;
1056
+ margin-inline-start: calc(calc(var(--sg-spacing) * -2) * var(--tw-space-x-reverse));
1057
+ margin-inline-end: calc(calc(var(--sg-spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));
1058
+ }
1059
+ }
693
1060
  .sg\:self-start {
694
1061
  align-self: flex-start;
695
1062
  }
696
1063
  .sg\:justify-self-end {
697
1064
  justify-self: flex-end;
698
1065
  }
1066
+ .sg\:truncate {
1067
+ overflow: hidden;
1068
+ text-overflow: ellipsis;
1069
+ white-space: nowrap;
1070
+ }
699
1071
  .sg\:overflow-hidden {
700
1072
  overflow: hidden;
701
1073
  }
1074
+ .sg\:overflow-x-hidden {
1075
+ overflow-x: hidden;
1076
+ }
1077
+ .sg\:overflow-y-auto {
1078
+ overflow-y: auto;
1079
+ }
1080
+ .sg\:rounded {
1081
+ border-radius: 0.25rem;
1082
+ }
702
1083
  .sg\:rounded-2xl {
703
1084
  border-radius: calc(var(--sg-radius) + 8px);
704
1085
  }
@@ -711,10 +1092,22 @@
711
1092
  .sg\:rounded-md {
712
1093
  border-radius: calc(var(--sg-radius) - 2px);
713
1094
  }
1095
+ .sg\:rounded-sm {
1096
+ border-radius: calc(var(--sg-radius) - 4px);
1097
+ }
1098
+ .sg\:rounded-xl {
1099
+ border-radius: calc(var(--sg-radius) + 4px);
1100
+ }
714
1101
  .sg\:rounded-t-xl {
715
1102
  border-top-left-radius: calc(var(--sg-radius) + 4px);
716
1103
  border-top-right-radius: calc(var(--sg-radius) + 4px);
717
1104
  }
1105
+ .sg\:rounded-tl-sm {
1106
+ border-top-left-radius: calc(var(--sg-radius) - 4px);
1107
+ }
1108
+ .sg\:rounded-tr-sm {
1109
+ border-top-right-radius: calc(var(--sg-radius) - 4px);
1110
+ }
718
1111
  .sg\:rounded-b-xl {
719
1112
  border-bottom-right-radius: calc(var(--sg-radius) + 4px);
720
1113
  border-bottom-left-radius: calc(var(--sg-radius) + 4px);
@@ -727,13 +1120,27 @@
727
1120
  border-top-style: var(--tw-border-style);
728
1121
  border-top-width: 1px;
729
1122
  }
1123
+ .sg\:border-r {
1124
+ border-right-style: var(--tw-border-style);
1125
+ border-right-width: 1px;
1126
+ }
730
1127
  .sg\:border-b {
731
1128
  border-bottom-style: var(--tw-border-style);
732
1129
  border-bottom-width: 1px;
733
1130
  }
1131
+ .sg\:border-l {
1132
+ border-left-style: var(--tw-border-style);
1133
+ border-left-width: 1px;
1134
+ }
1135
+ .sg\:border-border {
1136
+ border-color: var(--sg-border);
1137
+ }
734
1138
  .sg\:border-input {
735
1139
  border-color: var(--sg-input);
736
1140
  }
1141
+ .sg\:border-primary {
1142
+ border-color: var(--sg-primary);
1143
+ }
737
1144
  .sg\:border-transparent {
738
1145
  border-color: transparent;
739
1146
  }
@@ -758,9 +1165,36 @@
758
1165
  .sg\:bg-muted {
759
1166
  background-color: var(--sg-muted);
760
1167
  }
1168
+ .sg\:bg-muted-foreground\/40 {
1169
+ background-color: var(--sg-muted-foreground);
1170
+ @supports (color: color-mix(in lab, red, red)) {
1171
+ background-color: color-mix(in oklab, var(--sg-muted-foreground) 40%, transparent);
1172
+ }
1173
+ }
1174
+ .sg\:bg-muted\/30 {
1175
+ background-color: var(--sg-muted);
1176
+ @supports (color: color-mix(in lab, red, red)) {
1177
+ background-color: color-mix(in oklab, var(--sg-muted) 30%, transparent);
1178
+ }
1179
+ }
1180
+ .sg\:bg-muted\/50 {
1181
+ background-color: var(--sg-muted);
1182
+ @supports (color: color-mix(in lab, red, red)) {
1183
+ background-color: color-mix(in oklab, var(--sg-muted) 50%, transparent);
1184
+ }
1185
+ }
1186
+ .sg\:bg-popover {
1187
+ background-color: var(--sg-popover);
1188
+ }
761
1189
  .sg\:bg-primary {
762
1190
  background-color: var(--sg-primary);
763
1191
  }
1192
+ .sg\:bg-primary\/10 {
1193
+ background-color: var(--sg-primary);
1194
+ @supports (color: color-mix(in lab, red, red)) {
1195
+ background-color: color-mix(in oklab, var(--sg-primary) 10%, transparent);
1196
+ }
1197
+ }
764
1198
  .sg\:bg-secondary {
765
1199
  background-color: var(--sg-secondary);
766
1200
  }
@@ -829,9 +1263,18 @@
829
1263
  .sg\:bg-clip-text {
830
1264
  background-clip: text;
831
1265
  }
1266
+ .sg\:fill-current {
1267
+ fill: currentcolor;
1268
+ }
832
1269
  .sg\:object-cover {
833
1270
  object-fit: cover;
834
1271
  }
1272
+ .sg\:p-1 {
1273
+ padding: calc(var(--sg-spacing) * 1);
1274
+ }
1275
+ .sg\:p-2 {
1276
+ padding: calc(var(--sg-spacing) * 2);
1277
+ }
835
1278
  .sg\:p-4 {
836
1279
  padding: calc(var(--sg-spacing) * 4);
837
1280
  }
@@ -841,6 +1284,12 @@
841
1284
  .sg\:p-6 {
842
1285
  padding: calc(var(--sg-spacing) * 6);
843
1286
  }
1287
+ .sg\:px-1\.5 {
1288
+ padding-inline: calc(var(--sg-spacing) * 1.5);
1289
+ }
1290
+ .sg\:px-2 {
1291
+ padding-inline: calc(var(--sg-spacing) * 2);
1292
+ }
844
1293
  .sg\:px-2\.5 {
845
1294
  padding-inline: calc(var(--sg-spacing) * 2.5);
846
1295
  }
@@ -856,9 +1305,27 @@
856
1305
  .sg\:py-0\.5 {
857
1306
  padding-block: calc(var(--sg-spacing) * 0.5);
858
1307
  }
1308
+ .sg\:py-1 {
1309
+ padding-block: calc(var(--sg-spacing) * 1);
1310
+ }
1311
+ .sg\:py-1\.5 {
1312
+ padding-block: calc(var(--sg-spacing) * 1.5);
1313
+ }
1314
+ .sg\:py-2 {
1315
+ padding-block: calc(var(--sg-spacing) * 2);
1316
+ }
1317
+ .sg\:py-2\.5 {
1318
+ padding-block: calc(var(--sg-spacing) * 2.5);
1319
+ }
859
1320
  .sg\:py-3 {
860
1321
  padding-block: calc(var(--sg-spacing) * 3);
861
1322
  }
1323
+ .sg\:py-4 {
1324
+ padding-block: calc(var(--sg-spacing) * 4);
1325
+ }
1326
+ .sg\:py-8 {
1327
+ padding-block: calc(var(--sg-spacing) * 8);
1328
+ }
862
1329
  .sg\:py-12 {
863
1330
  padding-block: calc(var(--sg-spacing) * 12);
864
1331
  }
@@ -868,27 +1335,63 @@
868
1335
  .sg\:py-20 {
869
1336
  padding-block: calc(var(--sg-spacing) * 20);
870
1337
  }
1338
+ .sg\:py-32 {
1339
+ padding-block: calc(var(--sg-spacing) * 32);
1340
+ }
871
1341
  .sg\:pt-0 {
872
1342
  padding-top: calc(var(--sg-spacing) * 0);
873
1343
  }
874
- .sg\:pt-6 {
875
- padding-top: calc(var(--sg-spacing) * 6);
1344
+ .sg\:pt-2 {
1345
+ padding-top: calc(var(--sg-spacing) * 2);
1346
+ }
1347
+ .sg\:pt-3 {
1348
+ padding-top: calc(var(--sg-spacing) * 3);
1349
+ }
1350
+ .sg\:pt-4 {
1351
+ padding-top: calc(var(--sg-spacing) * 4);
876
1352
  }
877
1353
  .sg\:pt-8 {
878
1354
  padding-top: calc(var(--sg-spacing) * 8);
879
1355
  }
1356
+ .sg\:pr-1 {
1357
+ padding-right: calc(var(--sg-spacing) * 1);
1358
+ }
1359
+ .sg\:pr-2 {
1360
+ padding-right: calc(var(--sg-spacing) * 2);
1361
+ }
880
1362
  .sg\:pb-2 {
881
1363
  padding-bottom: calc(var(--sg-spacing) * 2);
882
1364
  }
883
1365
  .sg\:pb-4 {
884
1366
  padding-bottom: calc(var(--sg-spacing) * 4);
885
1367
  }
1368
+ .sg\:pl-4 {
1369
+ padding-left: calc(var(--sg-spacing) * 4);
1370
+ }
1371
+ .sg\:pl-8 {
1372
+ padding-left: calc(var(--sg-spacing) * 8);
1373
+ }
1374
+ .sg\:pl-9 {
1375
+ padding-left: calc(var(--sg-spacing) * 9);
1376
+ }
886
1377
  .sg\:text-center {
887
1378
  text-align: center;
888
1379
  }
1380
+ .sg\:text-left {
1381
+ text-align: left;
1382
+ }
1383
+ .sg\:text-right {
1384
+ text-align: right;
1385
+ }
889
1386
  .sg\:text-start {
890
1387
  text-align: start;
891
1388
  }
1389
+ .sg\:font-mono {
1390
+ font-family: var(--font-mono);
1391
+ }
1392
+ .sg\:font-serif {
1393
+ font-family: "Inter Tight";
1394
+ }
892
1395
  .sg\:text-2xl {
893
1396
  font-size: var(--sg-text-2xl);
894
1397
  line-height: var(--tw-leading, var(--sg-text-2xl--line-height));
@@ -925,6 +1428,23 @@
925
1428
  font-size: var(--sg-text-xs);
926
1429
  line-height: var(--tw-leading, var(--sg-text-xs--line-height));
927
1430
  }
1431
+ .sg\:text-\[10px\] {
1432
+ font-size: 10px;
1433
+ }
1434
+ .sg\:text-\[11px\] {
1435
+ font-size: 11px;
1436
+ }
1437
+ .sg\:text-\[12px\] {
1438
+ font-size: 12px;
1439
+ }
1440
+ .sg\:leading-6 {
1441
+ --tw-leading: calc(var(--sg-spacing) * 6);
1442
+ line-height: calc(var(--sg-spacing) * 6);
1443
+ }
1444
+ .sg\:leading-none {
1445
+ --tw-leading: 1;
1446
+ line-height: 1;
1447
+ }
928
1448
  .sg\:leading-normal {
929
1449
  --tw-leading: var(--sg-leading-normal);
930
1450
  line-height: var(--sg-leading-normal);
@@ -961,6 +1481,14 @@
961
1481
  --tw-tracking: var(--sg-tracking-tight);
962
1482
  letter-spacing: var(--sg-tracking-tight);
963
1483
  }
1484
+ .sg\:tracking-wider {
1485
+ --tw-tracking: var(--sg-tracking-wider);
1486
+ letter-spacing: var(--sg-tracking-wider);
1487
+ }
1488
+ .sg\:tracking-widest {
1489
+ --tw-tracking: var(--sg-tracking-widest);
1490
+ letter-spacing: var(--sg-tracking-widest);
1491
+ }
964
1492
  .sg\:text-balance {
965
1493
  text-wrap: balance;
966
1494
  }
@@ -976,9 +1504,15 @@
976
1504
  .sg\:text-background {
977
1505
  color: var(--sg-background);
978
1506
  }
1507
+ .sg\:text-card {
1508
+ color: var(--sg-card);
1509
+ }
979
1510
  .sg\:text-card-foreground {
980
1511
  color: var(--sg-card-foreground);
981
1512
  }
1513
+ .sg\:text-current {
1514
+ color: currentcolor;
1515
+ }
982
1516
  .sg\:text-destructive {
983
1517
  color: var(--sg-destructive);
984
1518
  }
@@ -994,12 +1528,21 @@
994
1528
  .sg\:text-muted-foreground {
995
1529
  color: var(--sg-muted-foreground);
996
1530
  }
1531
+ .sg\:text-popover-foreground {
1532
+ color: var(--sg-popover-foreground);
1533
+ }
997
1534
  .sg\:text-primary {
998
1535
  color: var(--sg-primary);
999
1536
  }
1000
1537
  .sg\:text-primary-foreground {
1001
1538
  color: var(--sg-primary-foreground);
1002
1539
  }
1540
+ .sg\:text-primary-foreground\/60 {
1541
+ color: var(--sg-primary-foreground);
1542
+ @supports (color: color-mix(in lab, red, red)) {
1543
+ color: color-mix(in oklab, var(--sg-primary-foreground) 60%, transparent);
1544
+ }
1545
+ }
1003
1546
  .sg\:text-secondary {
1004
1547
  color: var(--sg-secondary);
1005
1548
  }
@@ -1009,12 +1552,15 @@
1009
1552
  .sg\:text-transparent {
1010
1553
  color: transparent;
1011
1554
  }
1555
+ .sg\:capitalize {
1556
+ text-transform: capitalize;
1557
+ }
1558
+ .sg\:uppercase {
1559
+ text-transform: uppercase;
1560
+ }
1012
1561
  .sg\:italic {
1013
1562
  font-style: italic;
1014
1563
  }
1015
- .sg\:underline {
1016
- text-decoration-line: underline;
1017
- }
1018
1564
  .sg\:decoration-primary\/40 {
1019
1565
  text-decoration-color: var(--sg-primary);
1020
1566
  @supports (color: color-mix(in lab, red, red)) {
@@ -1042,11 +1588,20 @@
1042
1588
  .sg\:opacity-50 {
1043
1589
  opacity: 50%;
1044
1590
  }
1591
+ .sg\:opacity-60 {
1592
+ opacity: 60%;
1593
+ }
1594
+ .sg\:opacity-70 {
1595
+ opacity: 70%;
1596
+ }
1045
1597
  .sg\:opacity-\[0\.02\] {
1046
1598
  opacity: 0.02;
1047
1599
  }
1048
- .sg\:ring-1 {
1049
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1600
+ .sg\:bg-blend-color {
1601
+ background-blend-mode: color;
1602
+ }
1603
+ .sg\:shadow-2xl {
1604
+ --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
1050
1605
  box-shadow:
1051
1606
  var(--tw-inset-shadow),
1052
1607
  var(--tw-inset-ring-shadow),
@@ -1054,24 +1609,78 @@
1054
1609
  var(--tw-ring-shadow),
1055
1610
  var(--tw-shadow);
1056
1611
  }
1057
- .sg\:ring-foreground\/10 {
1058
- --tw-ring-color: var(--sg-foreground);
1059
- @supports (color: color-mix(in lab, red, red)) {
1060
- --tw-ring-color: color-mix(in oklab, var(--sg-foreground) 10%, transparent);
1061
- }
1062
- }
1063
- .sg\:ring-offset-background {
1064
- --tw-ring-offset-color: var(--sg-background);
1612
+ .sg\:shadow-lg {
1613
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1614
+ box-shadow:
1615
+ var(--tw-inset-shadow),
1616
+ var(--tw-inset-ring-shadow),
1617
+ var(--tw-ring-offset-shadow),
1618
+ var(--tw-ring-shadow),
1619
+ var(--tw-shadow);
1065
1620
  }
1066
- .sg\:blur-\[50px\] {
1067
- --tw-blur: blur(50px);
1068
- 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,);
1621
+ .sg\:shadow-md {
1622
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1623
+ box-shadow:
1624
+ var(--tw-inset-shadow),
1625
+ var(--tw-inset-ring-shadow),
1626
+ var(--tw-ring-offset-shadow),
1627
+ var(--tw-ring-shadow),
1628
+ var(--tw-shadow);
1069
1629
  }
1070
- .sg\:blur-\[60px\] {
1071
- --tw-blur: blur(60px);
1072
- 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,);
1630
+ .sg\:shadow-sm {
1631
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1632
+ box-shadow:
1633
+ var(--tw-inset-shadow),
1634
+ var(--tw-inset-ring-shadow),
1635
+ var(--tw-ring-offset-shadow),
1636
+ var(--tw-ring-shadow),
1637
+ var(--tw-shadow);
1073
1638
  }
1074
- .sg\:blur-\[70px\] {
1639
+ .sg\:ring-1 {
1640
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1641
+ box-shadow:
1642
+ var(--tw-inset-shadow),
1643
+ var(--tw-inset-ring-shadow),
1644
+ var(--tw-ring-offset-shadow),
1645
+ var(--tw-ring-shadow),
1646
+ var(--tw-shadow);
1647
+ }
1648
+ .sg\:ring-2 {
1649
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1650
+ box-shadow:
1651
+ var(--tw-inset-shadow),
1652
+ var(--tw-inset-ring-shadow),
1653
+ var(--tw-ring-offset-shadow),
1654
+ var(--tw-ring-shadow),
1655
+ var(--tw-shadow);
1656
+ }
1657
+ .sg\:ring-background {
1658
+ --tw-ring-color: var(--sg-background);
1659
+ }
1660
+ .sg\:ring-foreground\/5 {
1661
+ --tw-ring-color: var(--sg-foreground);
1662
+ @supports (color: color-mix(in lab, red, red)) {
1663
+ --tw-ring-color: color-mix(in oklab, var(--sg-foreground) 5%, transparent);
1664
+ }
1665
+ }
1666
+ .sg\:ring-foreground\/10 {
1667
+ --tw-ring-color: var(--sg-foreground);
1668
+ @supports (color: color-mix(in lab, red, red)) {
1669
+ --tw-ring-color: color-mix(in oklab, var(--sg-foreground) 10%, transparent);
1670
+ }
1671
+ }
1672
+ .sg\:ring-offset-background {
1673
+ --tw-ring-offset-color: var(--sg-background);
1674
+ }
1675
+ .sg\:blur-\[50px\] {
1676
+ --tw-blur: blur(50px);
1677
+ 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,);
1678
+ }
1679
+ .sg\:blur-\[60px\] {
1680
+ --tw-blur: blur(60px);
1681
+ 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,);
1682
+ }
1683
+ .sg\:blur-\[70px\] {
1075
1684
  --tw-blur: blur(70px);
1076
1685
  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,);
1077
1686
  }
@@ -1087,6 +1696,34 @@
1087
1696
  --tw-blur: blur(90px);
1088
1697
  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,);
1089
1698
  }
1699
+ .sg\:transition {
1700
+ transition-property:
1701
+ color,
1702
+ background-color,
1703
+ border-color,
1704
+ outline-color,
1705
+ text-decoration-color,
1706
+ fill,
1707
+ stroke,
1708
+ --tw-gradient-from,
1709
+ --tw-gradient-via,
1710
+ --tw-gradient-to,
1711
+ opacity,
1712
+ box-shadow,
1713
+ transform,
1714
+ translate,
1715
+ scale,
1716
+ rotate,
1717
+ filter,
1718
+ -webkit-backdrop-filter,
1719
+ backdrop-filter,
1720
+ display,
1721
+ content-visibility,
1722
+ overlay,
1723
+ pointer-events;
1724
+ transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
1725
+ transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
1726
+ }
1090
1727
  .sg\:transition-all {
1091
1728
  transition-property: all;
1092
1729
  transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
@@ -1107,6 +1744,11 @@
1107
1744
  transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
1108
1745
  transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
1109
1746
  }
1747
+ .sg\:transition-opacity {
1748
+ transition-property: opacity;
1749
+ transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
1750
+ transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
1751
+ }
1110
1752
  .sg\:transition-shadow {
1111
1753
  transition-property: box-shadow;
1112
1754
  transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
@@ -1121,6 +1763,10 @@
1121
1763
  transition-timing-function: var(--tw-ease, var(--sg-default-transition-timing-function));
1122
1764
  transition-duration: var(--tw-duration, var(--sg-default-transition-duration));
1123
1765
  }
1766
+ .sg\:duration-100 {
1767
+ --tw-duration: 100ms;
1768
+ transition-duration: 100ms;
1769
+ }
1124
1770
  .sg\:duration-300 {
1125
1771
  --tw-duration: 300ms;
1126
1772
  transition-duration: 300ms;
@@ -1149,6 +1795,10 @@
1149
1795
  --tw-duration: 900ms;
1150
1796
  transition-duration: 900ms;
1151
1797
  }
1798
+ .sg\:ease-in-out {
1799
+ --tw-ease: var(--sg-ease-in-out);
1800
+ transition-timing-function: var(--sg-ease-in-out);
1801
+ }
1152
1802
  .sg\:ease-out {
1153
1803
  --tw-ease: var(--sg-ease-out);
1154
1804
  transition-timing-function: var(--sg-ease-out);
@@ -1157,6 +1807,13 @@
1157
1807
  --tw-outline-style: none;
1158
1808
  outline-style: none;
1159
1809
  }
1810
+ .sg\:select-none {
1811
+ -webkit-user-select: none;
1812
+ user-select: none;
1813
+ }
1814
+ .sg\:duration-100 {
1815
+ animation-duration: 100ms;
1816
+ }
1160
1817
  .sg\:duration-300 {
1161
1818
  animation-duration: 300ms;
1162
1819
  }
@@ -1178,9 +1835,17 @@
1178
1835
  .sg\:duration-900 {
1179
1836
  animation-duration: 900ms;
1180
1837
  }
1838
+ .sg\:ease-in-out {
1839
+ animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1840
+ }
1181
1841
  .sg\:ease-out {
1182
1842
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
1183
1843
  }
1844
+ .sg\:\*\:w-full {
1845
+ :is(& > *) {
1846
+ width: 100%;
1847
+ }
1848
+ }
1184
1849
  .sg\:not-last\:border-b {
1185
1850
  &:not(*:last-child) {
1186
1851
  border-bottom-style: var(--tw-border-style);
@@ -1197,6 +1862,16 @@
1197
1862
  }
1198
1863
  }
1199
1864
  }
1865
+ .sg\:group-hover\:scale-110 {
1866
+ &:is(:where(.sg\:group):hover *) {
1867
+ @media (hover: hover) {
1868
+ --tw-scale-x: 110%;
1869
+ --tw-scale-y: 110%;
1870
+ --tw-scale-z: 110%;
1871
+ scale: var(--tw-scale-x) var(--tw-scale-y);
1872
+ }
1873
+ }
1874
+ }
1200
1875
  .sg\:group-hover\:text-primary {
1201
1876
  &:is(:where(.sg\:group):hover *) {
1202
1877
  @media (hover: hover) {
@@ -1204,6 +1879,23 @@
1204
1879
  }
1205
1880
  }
1206
1881
  }
1882
+ .sg\:group-has-data-horizontal\/field\:text-balance {
1883
+ &:is(:where(.sg\:group\/field):has(*[data-horizontal]) *) {
1884
+ text-wrap: balance;
1885
+ }
1886
+ }
1887
+ .sg\:group-has-data-\[size\=lg\]\/avatar-group\:size-10 {
1888
+ &:is(:where(.sg\:group\/avatar-group):has(*[data-size=lg]) *) {
1889
+ width: calc(var(--sg-spacing) * 10);
1890
+ height: calc(var(--sg-spacing) * 10);
1891
+ }
1892
+ }
1893
+ .sg\:group-has-data-\[size\=sm\]\/avatar-group\:size-6 {
1894
+ &:is(:where(.sg\:group\/avatar-group):has(*[data-size=sm]) *) {
1895
+ width: calc(var(--sg-spacing) * 6);
1896
+ height: calc(var(--sg-spacing) * 6);
1897
+ }
1898
+ }
1207
1899
  .sg\:group-has-\[\>svg\]\/alert\:col-start-2 {
1208
1900
  &:is(:where(.sg\:group\/alert):has(> svg) *) {
1209
1901
  grid-column-start: 2;
@@ -1219,48 +1911,199 @@
1219
1911
  display: inline;
1220
1912
  }
1221
1913
  }
1914
+ .sg\:group-data-\[disabled\=true\]\:pointer-events-none {
1915
+ &:is(:where(.sg\:group)[data-disabled=true] *) {
1916
+ pointer-events: none;
1917
+ }
1918
+ }
1919
+ .sg\:group-data-\[disabled\=true\]\:opacity-50 {
1920
+ &:is(:where(.sg\:group)[data-disabled=true] *) {
1921
+ opacity: 50%;
1922
+ }
1923
+ }
1924
+ .sg\:group-data-\[disabled\=true\]\/field\:opacity-50 {
1925
+ &:is(:where(.sg\:group\/field)[data-disabled=true] *) {
1926
+ opacity: 50%;
1927
+ }
1928
+ }
1929
+ .sg\:group-data-\[size\=default\]\/avatar\:size-2\.5 {
1930
+ &:is(:where(.sg\:group\/avatar)[data-size=default] *) {
1931
+ width: calc(var(--sg-spacing) * 2.5);
1932
+ height: calc(var(--sg-spacing) * 2.5);
1933
+ }
1934
+ }
1935
+ .sg\:group-data-\[size\=lg\]\/avatar\:size-3 {
1936
+ &:is(:where(.sg\:group\/avatar)[data-size=lg] *) {
1937
+ width: calc(var(--sg-spacing) * 3);
1938
+ height: calc(var(--sg-spacing) * 3);
1939
+ }
1940
+ }
1941
+ .sg\:group-data-\[size\=sm\]\/avatar\:size-2 {
1942
+ &:is(:where(.sg\:group\/avatar)[data-size=sm] *) {
1943
+ width: calc(var(--sg-spacing) * 2);
1944
+ height: calc(var(--sg-spacing) * 2);
1945
+ }
1946
+ }
1222
1947
  .sg\:group-data-\[size\=sm\]\/card\:px-4 {
1223
1948
  &:is(:where(.sg\:group\/card)[data-size=sm] *) {
1224
1949
  padding-inline: calc(var(--sg-spacing) * 4);
1225
1950
  }
1226
1951
  }
1227
- .sg\:hover\:bg-destructive\/80 {
1952
+ .sg\:group-data-\[variant\=outline\]\/field-group\:-mb-2 {
1953
+ &:is(:where(.sg\:group\/field-group)[data-variant=outline] *) {
1954
+ margin-bottom: calc(var(--sg-spacing) * -2);
1955
+ }
1956
+ }
1957
+ .sg\:group-\[\.toast\]\:bg-muted {
1958
+ &:is(:where(.sg\:group):is(.toast) *) {
1959
+ background-color: var(--sg-muted);
1960
+ }
1961
+ }
1962
+ .sg\:group-\[\.toast\]\:bg-primary {
1963
+ &:is(:where(.sg\:group):is(.toast) *) {
1964
+ background-color: var(--sg-primary);
1965
+ }
1966
+ }
1967
+ .sg\:group-\[\.toast\]\:text-muted-foreground {
1968
+ &:is(:where(.sg\:group):is(.toast) *) {
1969
+ color: var(--sg-muted-foreground);
1970
+ }
1971
+ }
1972
+ .sg\:group-\[\.toast\]\:text-primary-foreground {
1973
+ &:is(:where(.sg\:group):is(.toast) *) {
1974
+ color: var(--sg-primary-foreground);
1975
+ }
1976
+ }
1977
+ .sg\:group-\[\.toaster\]\:border-border {
1978
+ &:is(:where(.sg\:group):is(.toaster) *) {
1979
+ border-color: var(--sg-border);
1980
+ }
1981
+ }
1982
+ .sg\:group-\[\.toaster\]\:bg-background {
1983
+ &:is(:where(.sg\:group):is(.toaster) *) {
1984
+ background-color: var(--sg-background);
1985
+ }
1986
+ }
1987
+ .sg\:group-\[\.toaster\]\:text-foreground {
1988
+ &:is(:where(.sg\:group):is(.toaster) *) {
1989
+ color: var(--sg-foreground);
1990
+ }
1991
+ }
1992
+ .sg\:group-\[\.toaster\]\:shadow-lg {
1993
+ &:is(:where(.sg\:group):is(.toaster) *) {
1994
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1995
+ box-shadow:
1996
+ var(--tw-inset-shadow),
1997
+ var(--tw-inset-ring-shadow),
1998
+ var(--tw-ring-offset-shadow),
1999
+ var(--tw-ring-shadow),
2000
+ var(--tw-shadow);
2001
+ }
2002
+ }
2003
+ .sg\:peer-disabled\:cursor-not-allowed {
2004
+ &:is(:where(.sg\:peer):disabled ~ *) {
2005
+ cursor: not-allowed;
2006
+ }
2007
+ }
2008
+ .sg\:peer-disabled\:opacity-50 {
2009
+ &:is(:where(.sg\:peer):disabled ~ *) {
2010
+ opacity: 50%;
2011
+ }
2012
+ }
2013
+ .sg\:peer-disabled\:opacity-70 {
2014
+ &:is(:where(.sg\:peer):disabled ~ *) {
2015
+ opacity: 70%;
2016
+ }
2017
+ }
2018
+ .sg\:file\:border-0 {
2019
+ &::file-selector-button {
2020
+ border-style: var(--tw-border-style);
2021
+ border-width: 0px;
2022
+ }
2023
+ }
2024
+ .sg\:file\:bg-transparent {
2025
+ &::file-selector-button {
2026
+ background-color: transparent;
2027
+ }
2028
+ }
2029
+ .sg\:file\:text-sm {
2030
+ &::file-selector-button {
2031
+ font-size: var(--sg-text-sm);
2032
+ line-height: var(--tw-leading, var(--sg-text-sm--line-height));
2033
+ }
2034
+ }
2035
+ .sg\:file\:font-medium {
2036
+ &::file-selector-button {
2037
+ --tw-font-weight: var(--sg-font-weight-medium);
2038
+ font-weight: var(--sg-font-weight-medium);
2039
+ }
2040
+ }
2041
+ .sg\:file\:text-foreground {
2042
+ &::file-selector-button {
2043
+ color: var(--sg-foreground);
2044
+ }
2045
+ }
2046
+ .sg\:placeholder\:text-muted-foreground {
2047
+ &::placeholder {
2048
+ color: var(--sg-muted-foreground);
2049
+ }
2050
+ }
2051
+ .sg\:last\:mt-0 {
2052
+ &:last-child {
2053
+ margin-top: calc(var(--sg-spacing) * 0);
2054
+ }
2055
+ }
2056
+ .sg\:hover\:border-primary {
1228
2057
  &:hover {
1229
2058
  @media (hover: hover) {
1230
- background-color: var(--sg-destructive);
1231
- @supports (color: color-mix(in lab, red, red)) {
1232
- background-color: color-mix(in oklab, var(--sg-destructive) 80%, transparent);
1233
- }
2059
+ border-color: var(--sg-primary);
1234
2060
  }
1235
2061
  }
1236
2062
  }
1237
- .sg\:hover\:bg-muted {
2063
+ .sg\:hover\:border-primary\/20 {
1238
2064
  &:hover {
1239
2065
  @media (hover: hover) {
1240
- background-color: var(--sg-muted);
2066
+ border-color: var(--sg-primary);
2067
+ @supports (color: color-mix(in lab, red, red)) {
2068
+ border-color: color-mix(in oklab, var(--sg-primary) 20%, transparent);
2069
+ }
1241
2070
  }
1242
2071
  }
1243
2072
  }
1244
- .sg\:hover\:bg-primary\/80 {
2073
+ .sg\:hover\:border-primary\/40 {
1245
2074
  &:hover {
1246
2075
  @media (hover: hover) {
1247
- background-color: var(--sg-primary);
2076
+ border-color: var(--sg-primary);
1248
2077
  @supports (color: color-mix(in lab, red, red)) {
1249
- background-color: color-mix(in oklab, var(--sg-primary) 80%, transparent);
2078
+ border-color: color-mix(in oklab, var(--sg-primary) 40%, transparent);
1250
2079
  }
1251
2080
  }
1252
2081
  }
1253
2082
  }
1254
- .sg\:hover\:bg-secondary\/80 {
2083
+ .sg\:hover\:bg-destructive\/10 {
1255
2084
  &:hover {
1256
2085
  @media (hover: hover) {
1257
- background-color: var(--sg-secondary);
2086
+ background-color: var(--sg-destructive);
1258
2087
  @supports (color: color-mix(in lab, red, red)) {
1259
- background-color: color-mix(in oklab, var(--sg-secondary) 80%, transparent);
2088
+ background-color: color-mix(in oklab, var(--sg-destructive) 10%, transparent);
1260
2089
  }
1261
2090
  }
1262
2091
  }
1263
2092
  }
2093
+ .sg\:hover\:bg-muted {
2094
+ &:hover {
2095
+ @media (hover: hover) {
2096
+ background-color: var(--sg-muted);
2097
+ }
2098
+ }
2099
+ }
2100
+ .sg\:hover\:text-destructive {
2101
+ &:hover {
2102
+ @media (hover: hover) {
2103
+ color: var(--sg-destructive);
2104
+ }
2105
+ }
2106
+ }
1264
2107
  .sg\:hover\:text-foreground {
1265
2108
  &:hover {
1266
2109
  @media (hover: hover) {
@@ -1275,6 +2118,13 @@
1275
2118
  }
1276
2119
  }
1277
2120
  }
2121
+ .sg\:hover\:no-underline {
2122
+ &:hover {
2123
+ @media (hover: hover) {
2124
+ text-decoration-line: none;
2125
+ }
2126
+ }
2127
+ }
1278
2128
  .sg\:hover\:underline {
1279
2129
  &:hover {
1280
2130
  @media (hover: hover) {
@@ -1289,6 +2139,13 @@
1289
2139
  }
1290
2140
  }
1291
2141
  }
2142
+ .sg\:hover\:opacity-100 {
2143
+ &:hover {
2144
+ @media (hover: hover) {
2145
+ opacity: 100%;
2146
+ }
2147
+ }
2148
+ }
1292
2149
  .sg\:hover\:shadow-lg {
1293
2150
  &:hover {
1294
2151
  @media (hover: hover) {
@@ -1302,6 +2159,19 @@
1302
2159
  }
1303
2160
  }
1304
2161
  }
2162
+ .sg\:hover\:shadow-md {
2163
+ &:hover {
2164
+ @media (hover: hover) {
2165
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2166
+ box-shadow:
2167
+ var(--tw-inset-shadow),
2168
+ var(--tw-inset-ring-shadow),
2169
+ var(--tw-ring-offset-shadow),
2170
+ var(--tw-ring-shadow),
2171
+ var(--tw-shadow);
2172
+ }
2173
+ }
2174
+ }
1305
2175
  .sg\:hover\:brightness-90 {
1306
2176
  &:hover {
1307
2177
  @media (hover: hover) {
@@ -1318,6 +2188,16 @@
1318
2188
  }
1319
2189
  }
1320
2190
  }
2191
+ .sg\:focus\:bg-accent {
2192
+ &:focus {
2193
+ background-color: var(--sg-accent);
2194
+ }
2195
+ }
2196
+ .sg\:focus\:text-accent-foreground {
2197
+ &:focus {
2198
+ color: var(--sg-accent-foreground);
2199
+ }
2200
+ }
1321
2201
  .sg\:focus\:ring-2 {
1322
2202
  &:focus {
1323
2203
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
@@ -1357,6 +2237,11 @@
1357
2237
  var(--tw-shadow);
1358
2238
  }
1359
2239
  }
2240
+ .sg\:focus-visible\:ring-primary {
2241
+ &:focus-visible {
2242
+ --tw-ring-color: var(--sg-primary);
2243
+ }
2244
+ }
1360
2245
  .sg\:focus-visible\:ring-ring {
1361
2246
  &:focus-visible {
1362
2247
  --tw-ring-color: var(--sg-ring);
@@ -1379,11 +2264,37 @@
1379
2264
  pointer-events: none;
1380
2265
  }
1381
2266
  }
2267
+ .sg\:disabled\:cursor-not-allowed {
2268
+ &:disabled {
2269
+ cursor: not-allowed;
2270
+ }
2271
+ }
1382
2272
  .sg\:disabled\:opacity-50 {
1383
2273
  &:disabled {
1384
2274
  opacity: 50%;
1385
2275
  }
1386
2276
  }
2277
+ .sg\:has-data-checked\:border-primary\/30 {
2278
+ &:has(*[data-checked]) {
2279
+ border-color: var(--sg-primary);
2280
+ @supports (color: color-mix(in lab, red, red)) {
2281
+ border-color: color-mix(in oklab, var(--sg-primary) 30%, transparent);
2282
+ }
2283
+ }
2284
+ }
2285
+ .sg\:has-data-checked\:bg-primary\/5 {
2286
+ &:has(*[data-checked]) {
2287
+ background-color: var(--sg-primary);
2288
+ @supports (color: color-mix(in lab, red, red)) {
2289
+ background-color: color-mix(in oklab, var(--sg-primary) 5%, transparent);
2290
+ }
2291
+ }
2292
+ }
2293
+ .sg\:has-data-\[icon\=inline-end\]\:pr-1\.5 {
2294
+ &:has(*[data-icon=inline-end]) {
2295
+ padding-right: calc(var(--sg-spacing) * 1.5);
2296
+ }
2297
+ }
1387
2298
  .sg\:has-data-\[icon\=inline-end\]\:pr-2 {
1388
2299
  &:has(*[data-icon=inline-end]) {
1389
2300
  padding-right: calc(var(--sg-spacing) * 2);
@@ -1399,21 +2310,6 @@
1399
2310
  padding-right: calc(var(--sg-spacing) * 3);
1400
2311
  }
1401
2312
  }
1402
- .sg\:has-data-\[icon\=inline-start\]\:pl-2 {
1403
- &:has(*[data-icon=inline-start]) {
1404
- padding-left: calc(var(--sg-spacing) * 2);
1405
- }
1406
- }
1407
- .sg\:has-data-\[icon\=inline-start\]\:pl-2\.5 {
1408
- &:has(*[data-icon=inline-start]) {
1409
- padding-left: calc(var(--sg-spacing) * 2.5);
1410
- }
1411
- }
1412
- .sg\:has-data-\[icon\=inline-start\]\:pl-3 {
1413
- &:has(*[data-icon=inline-start]) {
1414
- padding-left: calc(var(--sg-spacing) * 3);
1415
- }
1416
- }
1417
2313
  .sg\:has-data-\[slot\=alert-action\]\:relative {
1418
2314
  &:has(*[data-slot=alert-action]) {
1419
2315
  position: relative;
@@ -1434,6 +2330,42 @@
1434
2330
  grid-template-rows: auto auto;
1435
2331
  }
1436
2332
  }
2333
+ .sg\:has-\[\>\[data-slot\=checkbox-group\]\]\:gap-3 {
2334
+ &:has(> [data-slot=checkbox-group]) {
2335
+ gap: calc(var(--sg-spacing) * 3);
2336
+ }
2337
+ }
2338
+ .sg\:has-\[\>\[data-slot\=field-content\]\]\:items-start {
2339
+ &:has(> [data-slot=field-content]) {
2340
+ align-items: flex-start;
2341
+ }
2342
+ }
2343
+ .sg\:has-\[\>\[data-slot\=field\]\]\:w-full {
2344
+ &:has(> [data-slot=field]) {
2345
+ width: 100%;
2346
+ }
2347
+ }
2348
+ .sg\:has-\[\>\[data-slot\=field\]\]\:flex-col {
2349
+ &:has(> [data-slot=field]) {
2350
+ flex-direction: column;
2351
+ }
2352
+ }
2353
+ .sg\:has-\[\>\[data-slot\=field\]\]\:rounded-xl {
2354
+ &:has(> [data-slot=field]) {
2355
+ border-radius: calc(var(--sg-radius) + 4px);
2356
+ }
2357
+ }
2358
+ .sg\:has-\[\>\[data-slot\=field\]\]\:border {
2359
+ &:has(> [data-slot=field]) {
2360
+ border-style: var(--tw-border-style);
2361
+ border-width: 1px;
2362
+ }
2363
+ }
2364
+ .sg\:has-\[\>\[data-slot\=radio-group\]\]\:gap-3 {
2365
+ &:has(> [data-slot=radio-group]) {
2366
+ gap: calc(var(--sg-spacing) * 3);
2367
+ }
2368
+ }
1437
2369
  .sg\:has-\[\>img\:first-child\]\:pt-0 {
1438
2370
  &:has(> img:first-child) {
1439
2371
  padding-top: calc(var(--sg-spacing) * 0);
@@ -1449,6 +2381,37 @@
1449
2381
  column-gap: calc(var(--sg-spacing) * 2.5);
1450
2382
  }
1451
2383
  }
2384
+ .sg\:data-closed\:animate-out {
2385
+ &[data-closed] {
2386
+ animation-name: exit;
2387
+ animation-duration: 150ms;
2388
+ --tw-exit-opacity: initial;
2389
+ --tw-exit-scale: initial;
2390
+ --tw-exit-rotate: initial;
2391
+ --tw-exit-translate-x: initial;
2392
+ --tw-exit-translate-y: initial;
2393
+ }
2394
+ }
2395
+ .sg\:data-closed\:fade-out-0 {
2396
+ &[data-closed] {
2397
+ --tw-exit-opacity: 0;
2398
+ }
2399
+ }
2400
+ .sg\:data-closed\:zoom-out-95 {
2401
+ &[data-closed] {
2402
+ --tw-exit-scale: .95;
2403
+ }
2404
+ }
2405
+ .sg\:data-disabled\:pointer-events-none {
2406
+ &[data-disabled] {
2407
+ pointer-events: none;
2408
+ }
2409
+ }
2410
+ .sg\:data-disabled\:opacity-50 {
2411
+ &[data-disabled] {
2412
+ opacity: 50%;
2413
+ }
2414
+ }
1452
2415
  .sg\:data-ending-style\:h-0 {
1453
2416
  &[data-ending-style] {
1454
2417
  height: calc(var(--sg-spacing) * 0);
@@ -1462,11 +2425,42 @@
1462
2425
  }
1463
2426
  }
1464
2427
  }
2428
+ .sg\:data-open\:animate-in {
2429
+ &[data-open] {
2430
+ animation-name: enter;
2431
+ animation-duration: 150ms;
2432
+ --tw-enter-opacity: initial;
2433
+ --tw-enter-scale: initial;
2434
+ --tw-enter-rotate: initial;
2435
+ --tw-enter-translate-x: initial;
2436
+ --tw-enter-translate-y: initial;
2437
+ }
2438
+ }
2439
+ .sg\:data-open\:fade-in-0 {
2440
+ &[data-open] {
2441
+ --tw-enter-opacity: 0;
2442
+ }
2443
+ }
2444
+ .sg\:data-open\:zoom-in-95 {
2445
+ &[data-open] {
2446
+ --tw-enter-scale: .95;
2447
+ }
2448
+ }
1465
2449
  .sg\:data-starting-style\:h-0 {
1466
2450
  &[data-starting-style] {
1467
2451
  height: calc(var(--sg-spacing) * 0);
1468
2452
  }
1469
2453
  }
2454
+ .sg\:data-\[align-trigger\=true\]\:animate-none {
2455
+ &[data-align-trigger=true] {
2456
+ animation: none;
2457
+ }
2458
+ }
2459
+ .sg\:data-\[invalid\=true\]\:text-destructive {
2460
+ &[data-invalid=true] {
2461
+ color: var(--sg-destructive);
2462
+ }
2463
+ }
1470
2464
  .sg\:data-\[orientation\=horizontal\]\:h-px {
1471
2465
  &[data-orientation=horizontal] {
1472
2466
  height: 1px;
@@ -1487,6 +2481,36 @@
1487
2481
  align-self: stretch;
1488
2482
  }
1489
2483
  }
2484
+ .sg\:data-\[side\=bottom\]\:slide-in-from-top-2 {
2485
+ &[data-side=bottom] {
2486
+ --tw-enter-translate-y: -2;
2487
+ }
2488
+ }
2489
+ .sg\:data-\[side\=inline-end\]\:slide-in-from-left-2 {
2490
+ &[data-side=inline-end] {
2491
+ --tw-enter-translate-x: -2;
2492
+ }
2493
+ }
2494
+ .sg\:data-\[side\=inline-start\]\:slide-in-from-right-2 {
2495
+ &[data-side=inline-start] {
2496
+ --tw-enter-translate-x: 2;
2497
+ }
2498
+ }
2499
+ .sg\:data-\[side\=left\]\:slide-in-from-right-2 {
2500
+ &[data-side=left] {
2501
+ --tw-enter-translate-x: 2;
2502
+ }
2503
+ }
2504
+ .sg\:data-\[side\=right\]\:slide-in-from-left-2 {
2505
+ &[data-side=right] {
2506
+ --tw-enter-translate-x: -2;
2507
+ }
2508
+ }
2509
+ .sg\:data-\[side\=top\]\:slide-in-from-bottom-2 {
2510
+ &[data-side=top] {
2511
+ --tw-enter-translate-y: 2;
2512
+ }
2513
+ }
1490
2514
  .sg\:data-\[size\=sm\]\:gap-4 {
1491
2515
  &[data-size=sm] {
1492
2516
  gap: calc(var(--sg-spacing) * 4);
@@ -1529,11 +2553,262 @@
1529
2553
  }
1530
2554
  }
1531
2555
  }
2556
+ .sg\:\*\:data-\[slot\=avatar\]\:ring-2 {
2557
+ :is(& > *) {
2558
+ &[data-slot=avatar] {
2559
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2560
+ box-shadow:
2561
+ var(--tw-inset-shadow),
2562
+ var(--tw-inset-ring-shadow),
2563
+ var(--tw-ring-offset-shadow),
2564
+ var(--tw-ring-shadow),
2565
+ var(--tw-shadow);
2566
+ }
2567
+ }
2568
+ }
2569
+ .sg\:\*\:data-\[slot\=avatar\]\:ring-background {
2570
+ :is(& > *) {
2571
+ &[data-slot=avatar] {
2572
+ --tw-ring-color: var(--sg-background);
2573
+ }
2574
+ }
2575
+ }
2576
+ .sg\:data-\[slot\=checkbox-group\]\:gap-3 {
2577
+ &[data-slot=checkbox-group] {
2578
+ gap: calc(var(--sg-spacing) * 3);
2579
+ }
2580
+ }
2581
+ .sg\:\*\:data-\[slot\=field\]\:p-4 {
2582
+ :is(& > *) {
2583
+ &[data-slot=field] {
2584
+ padding: calc(var(--sg-spacing) * 4);
2585
+ }
2586
+ }
2587
+ }
2588
+ .sg\:\*\:data-\[slot\=field-group\]\:gap-4 {
2589
+ :is(& > *) {
2590
+ &[data-slot=field-group] {
2591
+ gap: calc(var(--sg-spacing) * 4);
2592
+ }
2593
+ }
2594
+ }
2595
+ .sg\:\*\:data-\[slot\=field-label\]\:flex-auto {
2596
+ :is(& > *) {
2597
+ &[data-slot=field-label] {
2598
+ flex: auto;
2599
+ }
2600
+ }
2601
+ }
2602
+ .sg\:data-\[state\=checked\]\:bg-primary {
2603
+ &[data-state=checked] {
2604
+ background-color: var(--sg-primary);
2605
+ }
2606
+ }
2607
+ .sg\:data-\[state\=checked\]\:text-primary-foreground {
2608
+ &[data-state=checked] {
2609
+ color: var(--sg-primary-foreground);
2610
+ }
2611
+ }
2612
+ .sg\:data-\[state\=closed\]\:duration-300 {
2613
+ &[data-state=closed] {
2614
+ --tw-duration: 300ms;
2615
+ transition-duration: 300ms;
2616
+ }
2617
+ }
2618
+ .sg\:data-\[state\=closed\]\:animate-out {
2619
+ &[data-state=closed] {
2620
+ animation-name: exit;
2621
+ animation-duration: 150ms;
2622
+ --tw-exit-opacity: initial;
2623
+ --tw-exit-scale: initial;
2624
+ --tw-exit-rotate: initial;
2625
+ --tw-exit-translate-x: initial;
2626
+ --tw-exit-translate-y: initial;
2627
+ }
2628
+ }
2629
+ .sg\:data-\[state\=closed\]\:duration-300 {
2630
+ &[data-state=closed] {
2631
+ animation-duration: 300ms;
2632
+ }
2633
+ }
2634
+ .sg\:data-\[state\=closed\]\:fade-out-0 {
2635
+ &[data-state=closed] {
2636
+ --tw-exit-opacity: 0;
2637
+ }
2638
+ }
2639
+ .sg\:data-\[state\=closed\]\:slide-out-to-bottom {
2640
+ &[data-state=closed] {
2641
+ --tw-exit-translate-y: 100%;
2642
+ }
2643
+ }
2644
+ .sg\:data-\[state\=closed\]\:slide-out-to-left {
2645
+ &[data-state=closed] {
2646
+ --tw-exit-translate-x: -100%;
2647
+ }
2648
+ }
2649
+ .sg\:data-\[state\=closed\]\:slide-out-to-right {
2650
+ &[data-state=closed] {
2651
+ --tw-exit-translate-x: 100%;
2652
+ }
2653
+ }
2654
+ .sg\:data-\[state\=closed\]\:slide-out-to-top {
2655
+ &[data-state=closed] {
2656
+ --tw-exit-translate-y: -100%;
2657
+ }
2658
+ }
2659
+ .sg\:data-\[state\=closed\]\:zoom-out-95 {
2660
+ &[data-state=closed] {
2661
+ --tw-exit-scale: .95;
2662
+ }
2663
+ }
2664
+ .sg\:data-\[state\=open\]\:bg-accent {
2665
+ &[data-state=open] {
2666
+ background-color: var(--sg-accent);
2667
+ }
2668
+ }
2669
+ .sg\:data-\[state\=open\]\:bg-secondary {
2670
+ &[data-state=open] {
2671
+ background-color: var(--sg-secondary);
2672
+ }
2673
+ }
2674
+ .sg\:data-\[state\=open\]\:duration-500 {
2675
+ &[data-state=open] {
2676
+ --tw-duration: 500ms;
2677
+ transition-duration: 500ms;
2678
+ }
2679
+ }
2680
+ .sg\:data-\[state\=open\]\:animate-in {
2681
+ &[data-state=open] {
2682
+ animation-name: enter;
2683
+ animation-duration: 150ms;
2684
+ --tw-enter-opacity: initial;
2685
+ --tw-enter-scale: initial;
2686
+ --tw-enter-rotate: initial;
2687
+ --tw-enter-translate-x: initial;
2688
+ --tw-enter-translate-y: initial;
2689
+ }
2690
+ }
2691
+ .sg\:data-\[state\=open\]\:duration-500 {
2692
+ &[data-state=open] {
2693
+ animation-duration: 500ms;
2694
+ }
2695
+ }
2696
+ .sg\:data-\[state\=open\]\:fade-in-0 {
2697
+ &[data-state=open] {
2698
+ --tw-enter-opacity: 0;
2699
+ }
2700
+ }
2701
+ .sg\:data-\[state\=open\]\:slide-in-from-bottom {
2702
+ &[data-state=open] {
2703
+ --tw-enter-translate-y: 100%;
2704
+ }
2705
+ }
2706
+ .sg\:data-\[state\=open\]\:slide-in-from-left {
2707
+ &[data-state=open] {
2708
+ --tw-enter-translate-x: -100%;
2709
+ }
2710
+ }
2711
+ .sg\:data-\[state\=open\]\:slide-in-from-right {
2712
+ &[data-state=open] {
2713
+ --tw-enter-translate-x: 100%;
2714
+ }
2715
+ }
2716
+ .sg\:data-\[state\=open\]\:slide-in-from-top {
2717
+ &[data-state=open] {
2718
+ --tw-enter-translate-y: -100%;
2719
+ }
2720
+ }
2721
+ .sg\:data-\[state\=open\]\:zoom-in-95 {
2722
+ &[data-state=open] {
2723
+ --tw-enter-scale: .95;
2724
+ }
2725
+ }
2726
+ .sg\:data-\[variant\=label\]\:text-sm {
2727
+ &[data-variant=label] {
2728
+ font-size: var(--sg-text-sm);
2729
+ line-height: var(--tw-leading, var(--sg-text-sm--line-height));
2730
+ }
2731
+ }
2732
+ .sg\:data-\[variant\=legend\]\:text-base {
2733
+ &[data-variant=legend] {
2734
+ font-size: var(--sg-text-base);
2735
+ line-height: var(--tw-leading, var(--sg-text-base--line-height));
2736
+ }
2737
+ }
2738
+ .sg\:nth-last-2\:-mt-1 {
2739
+ &:nth-last-child(2) {
2740
+ margin-top: calc(var(--sg-spacing) * -1);
2741
+ }
2742
+ }
2743
+ .sg\:min-\[442px\]\:px-0 {
2744
+ @media (width >= 442px) {
2745
+ padding-inline: calc(var(--sg-spacing) * 0);
2746
+ }
2747
+ }
2748
+ .sg\:min-\[800px\]\:px-0 {
2749
+ @media (width >= 800px) {
2750
+ padding-inline: calc(var(--sg-spacing) * 0);
2751
+ }
2752
+ }
2753
+ .sg\:min-\[1056px\]\:px-0 {
2754
+ @media (width >= 1056px) {
2755
+ padding-inline: calc(var(--sg-spacing) * 0);
2756
+ }
2757
+ }
2758
+ .sg\:sm\:max-w-sm {
2759
+ @media (width >= 40rem) {
2760
+ max-width: var(--sg-container-sm);
2761
+ }
2762
+ }
2763
+ .sg\:sm\:grid-cols-2 {
2764
+ @media (width >= 40rem) {
2765
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2766
+ }
2767
+ }
2768
+ .sg\:sm\:flex-row {
2769
+ @media (width >= 40rem) {
2770
+ flex-direction: row;
2771
+ }
2772
+ }
2773
+ .sg\:sm\:justify-end {
2774
+ @media (width >= 40rem) {
2775
+ justify-content: flex-end;
2776
+ }
2777
+ }
2778
+ .sg\:sm\:space-x-2 {
2779
+ @media (width >= 40rem) {
2780
+ :where(& > :not(:last-child)) {
2781
+ --tw-space-x-reverse: 0;
2782
+ margin-inline-start: calc(calc(var(--sg-spacing) * 2) * var(--tw-space-x-reverse));
2783
+ margin-inline-end: calc(calc(var(--sg-spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
2784
+ }
2785
+ }
2786
+ }
2787
+ .sg\:sm\:text-left {
2788
+ @media (width >= 40rem) {
2789
+ text-align: left;
2790
+ }
2791
+ }
1532
2792
  .sg\:md\:-mx-8 {
1533
2793
  @media (width >= 48rem) {
1534
2794
  margin-inline: calc(var(--sg-spacing) * -8);
1535
2795
  }
1536
2796
  }
2797
+ .sg\:md\:block {
2798
+ @media (width >= 48rem) {
2799
+ display: block;
2800
+ }
2801
+ }
2802
+ .sg\:md\:flex {
2803
+ @media (width >= 48rem) {
2804
+ display: flex;
2805
+ }
2806
+ }
2807
+ .sg\:md\:hidden {
2808
+ @media (width >= 48rem) {
2809
+ display: none;
2810
+ }
2811
+ }
1537
2812
  .sg\:md\:h-72 {
1538
2813
  @media (width >= 48rem) {
1539
2814
  height: calc(var(--sg-spacing) * 72);
@@ -1564,11 +2839,6 @@
1564
2839
  grid-template-columns: 2fr 1fr;
1565
2840
  }
1566
2841
  }
1567
- .sg\:md\:px-0 {
1568
- @media (width >= 48rem) {
1569
- padding-inline: calc(var(--sg-spacing) * 0);
1570
- }
1571
- }
1572
2842
  .sg\:md\:py-32 {
1573
2843
  @media (width >= 48rem) {
1574
2844
  padding-block: calc(var(--sg-spacing) * 32);
@@ -1604,6 +2874,12 @@
1604
2874
  line-height: var(--tw-leading, var(--sg-text-lg--line-height));
1605
2875
  }
1606
2876
  }
2877
+ .sg\:md\:text-sm {
2878
+ @media (width >= 48rem) {
2879
+ font-size: var(--sg-text-sm);
2880
+ line-height: var(--tw-leading, var(--sg-text-sm--line-height));
2881
+ }
2882
+ }
1607
2883
  .sg\:md\:text-xl {
1608
2884
  @media (width >= 48rem) {
1609
2885
  font-size: var(--sg-text-xl);
@@ -1615,11 +2891,64 @@
1615
2891
  text-wrap: pretty;
1616
2892
  }
1617
2893
  }
2894
+ .sg\:\@md\/field-group\:flex-row {
2895
+ @container field-group (width >= 28rem) {
2896
+ flex-direction: row;
2897
+ }
2898
+ }
2899
+ .sg\:\@md\/field-group\:items-center {
2900
+ @container field-group (width >= 28rem) {
2901
+ align-items: center;
2902
+ }
2903
+ }
2904
+ .sg\:\@md\/field-group\:\*\:w-auto {
2905
+ @container field-group (width >= 28rem) {
2906
+ :is(& > *) {
2907
+ width: auto;
2908
+ }
2909
+ }
2910
+ }
2911
+ .sg\:\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:items-start {
2912
+ @container field-group (width >= 28rem) {
2913
+ &:has(> [data-slot=field-content]) {
2914
+ align-items: flex-start;
2915
+ }
2916
+ }
2917
+ }
2918
+ .sg\:\@md\/field-group\:\*\:data-\[slot\=field-label\]\:flex-auto {
2919
+ @container field-group (width >= 28rem) {
2920
+ :is(& > *) {
2921
+ &[data-slot=field-label] {
2922
+ flex: auto;
2923
+ }
2924
+ }
2925
+ }
2926
+ }
1618
2927
  .sg\:dark\:opacity-\[0\.04\] {
1619
2928
  &:is(.dark *) {
1620
2929
  opacity: 0.04;
1621
2930
  }
1622
2931
  }
2932
+ .sg\:dark\:has-data-checked\:border-primary\/20 {
2933
+ &:is(.dark *) {
2934
+ &:has(*[data-checked]) {
2935
+ border-color: var(--sg-primary);
2936
+ @supports (color: color-mix(in lab, red, red)) {
2937
+ border-color: color-mix(in oklab, var(--sg-primary) 20%, transparent);
2938
+ }
2939
+ }
2940
+ }
2941
+ }
2942
+ .sg\:dark\:has-data-checked\:bg-primary\/10 {
2943
+ &:is(.dark *) {
2944
+ &:has(*[data-checked]) {
2945
+ background-color: var(--sg-primary);
2946
+ @supports (color: color-mix(in lab, red, red)) {
2947
+ background-color: color-mix(in oklab, var(--sg-primary) 10%, transparent);
2948
+ }
2949
+ }
2950
+ }
2951
+ }
1623
2952
  .sg\:\[\&_a\]\:underline {
1624
2953
  & a {
1625
2954
  text-decoration-line: underline;
@@ -1655,6 +2984,12 @@
1655
2984
  height: calc(var(--sg-spacing) * 4);
1656
2985
  }
1657
2986
  }
2987
+ .sg\:\[\&_svg\]\:size-5 {
2988
+ & svg {
2989
+ width: calc(var(--sg-spacing) * 5);
2990
+ height: calc(var(--sg-spacing) * 5);
2991
+ }
2992
+ }
1658
2993
  .sg\:\[\&_svg\]\:shrink-0 {
1659
2994
  & svg {
1660
2995
  flex-shrink: 0;
@@ -1730,6 +3065,102 @@
1730
3065
  }
1731
3066
  }
1732
3067
  }
3068
+ .sg\:\[\&\>\.sr-only\]\:w-auto {
3069
+ & > .sr-only {
3070
+ width: auto;
3071
+ }
3072
+ }
3073
+ .sg\:has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px {
3074
+ &:has(> [data-slot=field-content]) {
3075
+ & > [role=checkbox],
3076
+ [role=radio] {
3077
+ margin-top: 1px;
3078
+ }
3079
+ }
3080
+ }
3081
+ .sg\:\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px {
3082
+ @container field-group (width >= 28rem) {
3083
+ &:has(> [data-slot=field-content]) {
3084
+ & > [role=checkbox],
3085
+ [role=radio] {
3086
+ margin-top: 1px;
3087
+ }
3088
+ }
3089
+ }
3090
+ }
3091
+ .sg\:\[\&\>a\]\:underline {
3092
+ & > a {
3093
+ text-decoration-line: underline;
3094
+ }
3095
+ }
3096
+ .sg\:\[\&\>a\]\:underline-offset-4 {
3097
+ & > a {
3098
+ text-underline-offset: 4px;
3099
+ }
3100
+ }
3101
+ .sg\:\[\&\>a\:hover\]\:text-primary {
3102
+ & > a:hover {
3103
+ color: var(--sg-primary);
3104
+ }
3105
+ }
3106
+ .sg\:\[\&\>span\]\:line-clamp-1 {
3107
+ & > span {
3108
+ overflow: hidden;
3109
+ display: -webkit-box;
3110
+ -webkit-box-orient: vertical;
3111
+ -webkit-line-clamp: 1;
3112
+ }
3113
+ }
3114
+ .sg\:\[\&\>svg\]\:size-4 {
3115
+ & > svg {
3116
+ width: calc(var(--sg-spacing) * 4);
3117
+ height: calc(var(--sg-spacing) * 4);
3118
+ }
3119
+ }
3120
+ .sg\:group-has-data-\[size\=lg\]\/avatar-group\:\[\&\>svg\]\:size-5 {
3121
+ &:is(:where(.sg\:group\/avatar-group):has(*[data-size=lg]) *) {
3122
+ & > svg {
3123
+ width: calc(var(--sg-spacing) * 5);
3124
+ height: calc(var(--sg-spacing) * 5);
3125
+ }
3126
+ }
3127
+ }
3128
+ .sg\:group-has-data-\[size\=sm\]\/avatar-group\:\[\&\>svg\]\:size-3 {
3129
+ &:is(:where(.sg\:group\/avatar-group):has(*[data-size=sm]) *) {
3130
+ & > svg {
3131
+ width: calc(var(--sg-spacing) * 3);
3132
+ height: calc(var(--sg-spacing) * 3);
3133
+ }
3134
+ }
3135
+ }
3136
+ .sg\:group-data-\[size\=default\]\/avatar\:\[\&\>svg\]\:size-2 {
3137
+ &:is(:where(.sg\:group\/avatar)[data-size=default] *) {
3138
+ & > svg {
3139
+ width: calc(var(--sg-spacing) * 2);
3140
+ height: calc(var(--sg-spacing) * 2);
3141
+ }
3142
+ }
3143
+ }
3144
+ .sg\:group-data-\[size\=lg\]\/avatar\:\[\&\>svg\]\:size-2 {
3145
+ &:is(:where(.sg\:group\/avatar)[data-size=lg] *) {
3146
+ & > svg {
3147
+ width: calc(var(--sg-spacing) * 2);
3148
+ height: calc(var(--sg-spacing) * 2);
3149
+ }
3150
+ }
3151
+ }
3152
+ .sg\:group-data-\[size\=sm\]\/avatar\:\[\&\>svg\]\:hidden {
3153
+ &:is(:where(.sg\:group\/avatar)[data-size=sm] *) {
3154
+ & > svg {
3155
+ display: none;
3156
+ }
3157
+ }
3158
+ }
3159
+ .sg\:\[\[data-variant\=legend\]\+\&\]\:-mt-1\.5 {
3160
+ [data-variant=legend] + & {
3161
+ margin-top: calc(var(--sg-spacing) * -1.5);
3162
+ }
3163
+ }
1733
3164
  }
1734
3165
  @layer reset {
1735
3166
  *,
@@ -1824,25 +3255,25 @@
1824
3255
  .grid-cols-cards {
1825
3256
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
1826
3257
  }
1827
- @keyframes sparkle {
1828
- 0%, 100% {
1829
- opacity: 0;
1830
- transform: scale(0.5);
1831
- }
1832
- 50% {
1833
- opacity: 1;
1834
- transform: scale(1.2);
1835
- }
3258
+ }
3259
+ @keyframes sparkle {
3260
+ 0%, 100% {
3261
+ opacity: 0;
3262
+ transform: scale(0.5);
1836
3263
  }
1837
- @keyframes burst {
1838
- 0% {
1839
- opacity: 1;
1840
- transform: translate(0, 0) scale(1);
1841
- }
1842
- 100% {
1843
- opacity: 0;
1844
- transform: translate(var(--burst-x), var(--burst-y)) scale(0);
1845
- }
3264
+ 50% {
3265
+ opacity: 1;
3266
+ transform: scale(1.2);
3267
+ }
3268
+ }
3269
+ @keyframes burst {
3270
+ 0% {
3271
+ opacity: 1;
3272
+ transform: translate(0, 0) scale(1);
3273
+ }
3274
+ 100% {
3275
+ opacity: 0;
3276
+ transform: translate(var(--burst-x), var(--burst-y)) scale(0);
1846
3277
  }
1847
3278
  }
1848
3279
  @keyframes enter {
@@ -1857,7 +3288,11 @@
1857
3288
  transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
1858
3289
  }
1859
3290
  }
3291
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
3292
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
3293
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1860
3294
  @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
3295
+ @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1861
3296
  @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1862
3297
  @property --tw-gradient-position { syntax: "*"; inherits: false; }
1863
3298
  @property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }
@@ -1903,9 +3338,6 @@
1903
3338
  @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
1904
3339
  @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
1905
3340
  @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
1906
- @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1907
- @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1908
- @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1909
3341
  @keyframes spin {
1910
3342
  to {
1911
3343
  transform: rotate(360deg);
@@ -1916,13 +3348,27 @@
1916
3348
  opacity: 0.5;
1917
3349
  }
1918
3350
  }
3351
+ @keyframes bounce {
3352
+ 0%, 100% {
3353
+ transform: translateY(-25%);
3354
+ animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
3355
+ }
3356
+ 50% {
3357
+ transform: none;
3358
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
3359
+ }
3360
+ }
1919
3361
  @layer properties {
1920
3362
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1921
3363
  *,
1922
3364
  ::before,
1923
3365
  ::after,
1924
3366
  ::backdrop {
3367
+ --tw-translate-x: 0;
3368
+ --tw-translate-y: 0;
3369
+ --tw-translate-z: 0;
1925
3370
  --tw-space-y-reverse: 0;
3371
+ --tw-space-x-reverse: 0;
1926
3372
  --tw-border-style: solid;
1927
3373
  --tw-gradient-position: initial;
1928
3374
  --tw-gradient-from: #0000;
@@ -1968,9 +3414,6 @@
1968
3414
  --tw-scale-x: 1;
1969
3415
  --tw-scale-y: 1;
1970
3416
  --tw-scale-z: 1;
1971
- --tw-translate-x: 0;
1972
- --tw-translate-y: 0;
1973
- --tw-translate-z: 0;
1974
3417
  }
1975
3418
  }
1976
3419
  }