@uoguelph/react-components 1.2.1 → 1.2.2
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.
- package/dist/blockquote-content.js +1 -1
- package/dist/carousel.js +1 -1
- package/dist/components/loading-indicator/loading-indicator.d.ts +4 -3
- package/dist/components/select/select-button.d.ts +10 -0
- package/dist/components/select/select-option.d.ts +10 -0
- package/dist/components/select/select-options.d.ts +10 -0
- package/dist/components/select/select.d.ts +7 -0
- package/dist/contact-phone.js +1 -1
- package/dist/embedded-video-modal-button.js +1 -1
- package/dist/hero-video.js +1 -1
- package/dist/index.css +1 -1
- package/dist/loading-indicator.js +28 -39
- package/dist/modal.js +1 -1
- package/dist/select-button.d.ts +2 -0
- package/dist/select-button.js +40 -0
- package/dist/select-option.d.ts +2 -0
- package/dist/select-option.js +48 -0
- package/dist/select-options.d.ts +2 -0
- package/dist/select-options.js +31 -0
- package/dist/select.d.ts +2 -0
- package/dist/select.js +9 -0
- package/dist/{solid-DM6GVhkF.js → solid-DyAB2_Ed.js} +15 -4
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as u, jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import { f as r, a as m } from "./solid-
|
|
2
|
+
import { f as r, a as m } from "./solid-DyAB2_Ed.js";
|
|
3
3
|
import { FontAwesomeIcon as c } from "@fortawesome/react-fontawesome";
|
|
4
4
|
import { useContext as a } from "react";
|
|
5
5
|
import { twMerge as g } from "tailwind-merge";
|
package/dist/carousel.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as g, jsx as u } from "react/jsx-runtime";
|
|
2
|
-
import { b as k, c as I } from "./solid-
|
|
2
|
+
import { b as k, c as I } from "./solid-DyAB2_Ed.js";
|
|
3
3
|
import { FontAwesomeIcon as p } from "@fortawesome/react-fontawesome";
|
|
4
4
|
import { Children as A, useRef as d, useState as F, useEffect as L } from "react";
|
|
5
5
|
import { tv as S } from "tailwind-variants";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type LoadingIndicatorProps = PropsWithChildren<{
|
|
2
3
|
/**
|
|
3
4
|
* The size of the loading indicator
|
|
4
5
|
*
|
|
@@ -13,6 +14,6 @@ export type LoadingIndicatorProps = {
|
|
|
13
14
|
color?: 'blue' | 'red' | 'green' | 'yellow';
|
|
14
15
|
/** Additional classes to add the loading indicator */
|
|
15
16
|
className?: string;
|
|
16
|
-
}
|
|
17
|
+
}>;
|
|
17
18
|
/** A component which can be used as a placeholder while content is loading */
|
|
18
|
-
export declare function LoadingIndicator({ size, color, className }: LoadingIndicatorProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare function LoadingIndicator({ size, color, className, children }: LoadingIndicatorProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ListboxButtonProps } from '@headlessui/react';
|
|
2
|
+
import { ElementType } from 'react';
|
|
3
|
+
export type SelectButtonProps<T extends ElementType> = ListboxButtonProps<T> & {
|
|
4
|
+
/** Additional classes to apply to the component. */
|
|
5
|
+
className?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare function SelectButton<T extends ElementType>({ children, className, ...rest }: SelectButtonProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare namespace SelectButton {
|
|
9
|
+
var displayName: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ListboxOptionProps } from '@headlessui/react';
|
|
2
|
+
import { ElementType } from 'react';
|
|
3
|
+
export type SelectOptionProps<T extends ElementType> = ListboxOptionProps<T> & {
|
|
4
|
+
/** Additional classes to apply to the component. */
|
|
5
|
+
className?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare function SelectOption<T extends ElementType>({ children, className, ...rest }: SelectOptionProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare namespace SelectOption {
|
|
9
|
+
var displayName: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ListboxOptionsProps } from '@headlessui/react';
|
|
2
|
+
import { ElementType } from 'react';
|
|
3
|
+
export type SelectOptionsProps<T extends ElementType> = ListboxOptionsProps<T> & {
|
|
4
|
+
/** Additional classes to apply to the component. */
|
|
5
|
+
className?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare function SelectOptions<T extends ElementType>({ children, className, ...rest }: SelectOptionsProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare namespace SelectOptions {
|
|
9
|
+
var displayName: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ListboxProps } from '@headlessui/react';
|
|
2
|
+
import { ElementType } from 'react';
|
|
3
|
+
export type SelectProps<T extends ElementType> = ListboxProps<T>;
|
|
4
|
+
export declare function Select<T extends ElementType>({ children, ...rest }: SelectProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare namespace Select {
|
|
6
|
+
var displayName: string;
|
|
7
|
+
}
|
package/dist/contact-phone.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as e, jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import { d as a } from "./solid-
|
|
2
|
+
import { d as a } from "./solid-DyAB2_Ed.js";
|
|
3
3
|
import { FontAwesomeIcon as l } from "@fortawesome/react-fontawesome";
|
|
4
4
|
import { twMerge as u } from "tailwind-merge";
|
|
5
5
|
import { tv as g } from "tailwind-variants";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as d, jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import { e as i } from "./solid-
|
|
2
|
+
import { e as i } from "./solid-DyAB2_Ed.js";
|
|
3
3
|
import { FontAwesomeIcon as s } from "@fortawesome/react-fontawesome";
|
|
4
4
|
import { useContext as m } from "react";
|
|
5
5
|
import { twMerge as l } from "tailwind-merge";
|
package/dist/hero-video.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as e, jsxs as d } from "react/jsx-runtime";
|
|
2
|
-
import { e as p } from "./solid-
|
|
2
|
+
import { e as p } from "./solid-DyAB2_Ed.js";
|
|
3
3
|
import { FontAwesomeIcon as l } from "@fortawesome/react-fontawesome";
|
|
4
4
|
import { useContext as u } from "react";
|
|
5
5
|
import { tv as f } from "tailwind-variants";
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v4.0.11 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--uog-font-serif:"Bitter",ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--uog-color-black:#000;--uog-color-white:#fff;--uog-spacing:.4rem;--uog-container-6xl:72rem;--uog-container-7xl:80rem;--uog-text-sm:1.4rem;--uog-text-sm--line-height:1.4;--uog-text-base:1.6rem;--uog-text-base--line-height:1.4;--uog-text-lg:1.8rem;--uog-text-lg--line-height:1.4;--uog-text-xl:2rem;--uog-text-xl--line-height:1.4;--uog-text-2xl:2.5rem;--uog-text-2xl--line-height:1.4;--uog-text-3xl:3rem;--uog-text-3xl--line-height:1.4;--uog-text-4xl:4rem;--uog-text-4xl--line-height:1.4;--uog-text-6xl:6rem;--uog-text-6xl--line-height:1.6;--uog-font-weight-light:300;--uog-font-weight-normal:400;--uog-font-weight-medium:500;--uog-font-weight-bold:700;--uog-leading-tight:1.25;--uog-radius-sm:.25rem;--uog-radius-md:.375rem;--uog-ease-out:cubic-bezier(0,0,.2,1);--uog-ease-in-out:cubic-bezier(.4,0,.2,1);--uog-animate-spin:spin 1s linear infinite;--uog-blur-sm:8px;--uog-aspect-video:16/9;--uog-default-transition-duration:.15s;--uog-default-transition-timing-function:cubic-bezier(.4,0,.2,1);--uog-color-white-contrast:#000;--uog-color-black-focus:#444;--uog-color-black-on-light:#000;--uog-color-black-contrast:#fff;--uog-color-red:#e51937;--uog-color-red-focus:#b3142c;--uog-color-red-contrast:#fff;--uog-color-yellow:#ffc429;--uog-color-yellow-focus:#ffe299;--uog-color-yellow-contrast:#000;--uog-color-blue:#187bb4;--uog-color-blue-focus:#135f8b;--uog-color-blue-on-light:#1775ab;--uog-color-blue-contrast:#fff;--uog-color-green:#318738;--uog-color-green-focus:#27682c;--uog-color-green-contrast:#fff;--uog-color-grey-light:#d8d8d8;--uog-color-grey-light-contrast:#000;--uog-color-grey-light-bg:#f5f5f5;--uog-color-grey-dark:#747676;--uog-color-grey-dark-contrast:#fff;--uog-color-grey-dark-bg:#222;--uog-color-body-copy:#555;--uog-color-body-copy-on-dark:#ccc;--uog-color-body-copy-bold:#333;--uog-color-body-copy-link:#187bb4;--uog-color-body-copy-link-on-light:#166ea2;--uog-color-body-copy-link-on-dark:#1d93d7;--uog-animate-fade-in:fade .25s ease-in-out 1 normal forwards}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--tw-max-content-width:137rem;font-size:62.5%}body{margin:0;padding:0;font-size:1.6rem}@keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}}@layer components;@layer utilities{.uog\:pointer-events-none{pointer-events:none}.uog\:invisible{visibility:hidden}.uog\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:absolute{position:absolute}.uog\:fixed{position:fixed}.uog\:relative{position:relative}.uog\:inset-0{inset:calc(var(--uog-spacing)*0)}.uog\:top-0{top:calc(var(--uog-spacing)*0)}.uog\:top-1\/2{top:50%}.uog\:right-0{right:calc(var(--uog-spacing)*0)}.uog\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:left-0{left:calc(var(--uog-spacing)*0)}.uog\:left-1\/2{left:50%}.uog\:z-0{z-index:0}.uog\:z-10{z-index:10}.uog\:z-20{z-index:20}.uog\:z-50{z-index:50}.uog\:col-start-1{grid-column-start:1}.uog\:col-start-2{grid-column-start:2}.uog\:row-start-1{grid-row-start:1}.uog\:container{width:100%}@media (width>=40rem){.uog\:container{max-width:40rem}}@media (width>=48rem){.uog\:container{max-width:48rem}}@media (width>=64rem){.uog\:container{max-width:64rem}}@media (width>=80rem){.uog\:container{max-width:80rem}}@media (width>=96rem){.uog\:container{max-width:96rem}}.uog\:mx-auto{margin-inline:auto}.uog\:my-2{margin-block:calc(var(--uog-spacing)*2)}.uog\:my-4{margin-block:calc(var(--uog-spacing)*4)}.uog\:my-7{margin-block:calc(var(--uog-spacing)*7)}.uog\:mt-3\.75{margin-top:calc(var(--uog-spacing)*3.75)}.uog\:mt-7\.5{margin-top:calc(var(--uog-spacing)*7.5)}.uog\:mr-\[0\.3em\]{margin-right:.3em}.uog\:mr-auto{margin-right:auto}.uog\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:mb-1{margin-bottom:calc(var(--uog-spacing)*1)}.uog\:mb-2{margin-bottom:calc(var(--uog-spacing)*2)}.uog\:mb-3\.75{margin-bottom:calc(var(--uog-spacing)*3.75)}.uog\:mb-4{margin-bottom:calc(var(--uog-spacing)*4)}.uog\:ml-4{margin-left:calc(var(--uog-spacing)*4)}.uog\:ml-\[0\.25em\]{margin-left:.25em}.uog\:ml-auto{margin-left:auto}.uog\:block{display:block}.uog\:contents{display:contents}.uog\:flex{display:flex}.uog\:grid{display:grid}.uog\:hidden{display:none}.uog\:inline-block{display:inline-block}.uog\:inline-flex{display:inline-flex}.uog\:aspect-\[16\/9\]{aspect-ratio:16/9}.uog\:aspect-square{aspect-ratio:1}.uog\:aspect-video{aspect-ratio:var(--uog-aspect-video)}.uog\:size-4{width:calc(var(--uog-spacing)*4);height:calc(var(--uog-spacing)*4)}.uog\:h-1{height:calc(var(--uog-spacing)*1)}.uog\:h-2{height:calc(var(--uog-spacing)*2)}.uog\:h-5{height:calc(var(--uog-spacing)*5)}.uog\:h-9{height:calc(var(--uog-spacing)*9)}.uog\:h-16{height:calc(var(--uog-spacing)*16)}.uog\:h-\[\.75em\]{height:.75em}.uog\:h-\[1\.5em\]{height:1.5em}.uog\:h-\[1em\]{height:1em}.uog\:h-auto{height:auto}.uog\:h-fit{height:fit-content}.uog\:h-full{height:100%}.uog\:max-h-\[80vh\]{max-height:80vh}.uog\:max-h-\[calc\(85vh-14rem\)\]{max-height:calc(85vh - 14rem)}.uog\:max-h-full{max-height:100%}.uog\:min-h-\[7rem\]{min-height:7rem}.uog\:min-h-\[50rem\]{min-height:50rem}.uog\:w-2{width:calc(var(--uog-spacing)*2)}.uog\:w-3\/4{width:75%}.uog\:w-5{width:calc(var(--uog-spacing)*5)}.uog\:w-16{width:calc(var(--uog-spacing)*16)}.uog\:w-24{width:calc(var(--uog-spacing)*24)}.uog\:w-\[1em\]{width:1em}.uog\:w-fit{width:fit-content}.uog\:w-full{width:100%}.uog\:w-screen{width:100vw}.uog\:max-w-6xl{max-width:var(--uog-container-6xl)}.uog\:max-w-\[--tw-max-content-width\]{max-width:--tw-max-content-width}.uog\:flex-1{flex:1}.uog\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:rotate-90{rotate:90deg}.uog\:animate-fade-in{animation:var(--uog-animate-fade-in)}.uog\:animate-spin{animation:var(--uog-animate-spin)}.uog\:cursor-not-allowed{cursor:not-allowed}.uog\:cursor-pointer{cursor:pointer}.uog\:list-inside{list-style-position:inside}.uog\:list-\[circle\]{list-style-type:circle}.uog\:list-\[lower-alpha\]{list-style-type:lower-alpha}.uog\:list-\[lower-roman\]{list-style-type:lower-roman}.uog\:list-\[square\]{list-style-type:square}.uog\:list-decimal{list-style-type:decimal}.uog\:list-disc{list-style-type:disc}.uog\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.uog\:grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.uog\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}.uog\:grid-cols-\[1fr_4fr\]{grid-template-columns:1fr 4fr}.uog\:grid-cols-\[2fr_1fr\]{grid-template-columns:2fr 1fr}.uog\:grid-cols-\[4fr_1fr\]{grid-template-columns:4fr 1fr}.uog\:grid-cols-\[repeat\(var\(--items\)\,calc\(100\%\/var\(--display\)\)\)\]{grid-template-columns:repeat(var(--items),calc(100%/var(--display)))}.uog\:flex-col{flex-direction:column}.uog\:flex-col-reverse{flex-direction:column-reverse}.uog\:flex-row{flex-direction:row}.uog\:flex-row-reverse{flex-direction:row-reverse}.uog\:flex-wrap{flex-wrap:wrap}.uog\:items-center{align-items:center}.uog\:items-end{align-items:flex-end}.uog\:items-start{align-items:flex-start}.uog\:justify-around{justify-content:space-around}.uog\:justify-between{justify-content:space-between}.uog\:justify-center{justify-content:center}.uog\:justify-end{justify-content:flex-end}.uog\:justify-start{justify-content:flex-start}.uog\:gap-0\.5{gap:calc(var(--uog-spacing)*.5)}.uog\:gap-1{gap:calc(var(--uog-spacing)*1)}.uog\:gap-2{gap:calc(var(--uog-spacing)*2)}.uog\:gap-4{gap:calc(var(--uog-spacing)*4)}.uog\:gap-5{gap:calc(var(--uog-spacing)*5)}.uog\:gap-6{gap:calc(var(--uog-spacing)*6)}.uog\:gap-\[1em\]{gap:1em}.uog\:overflow-hidden{overflow:hidden}.uog\:overflow-x-hidden{overflow-x:hidden}.uog\:rounded{border-radius:.25rem}.uog\:rounded-full{border-radius:3.40282e38px}.uog\:rounded-md{border-radius:var(--uog-radius-md)}.uog\:rounded-t-sm{border-top-left-radius:var(--uog-radius-sm);border-top-right-radius:var(--uog-radius-sm)}.uog\:border{border-style:var(--tw-border-style);border-width:1px}.uog\:border-0{border-style:var(--tw-border-style);border-width:0}.uog\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.uog\:border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.uog\:border-b-4{border-bottom-style:var(--tw-border-style);border-bottom-width:4px}.uog\:border-l-3{border-left-style:var(--tw-border-style);border-left-width:3px}.uog\:border-l-4{border-left-style:var(--tw-border-style);border-left-width:4px}.uog\:border-l-8{border-left-style:var(--tw-border-style);border-left-width:8px}.uog\:border-black{border-color:var(--uog-color-black)}.uog\:border-blue{border-color:var(--uog-color-blue)}.uog\:border-green{border-color:var(--uog-color-green)}.uog\:border-grey-light{border-color:var(--uog-color-grey-light)}.uog\:border-red{border-color:var(--uog-color-red)}.uog\:border-white{border-color:var(--uog-color-white)}.uog\:border-white\/40{border-color:color-mix(in oklab,var(--uog-color-white)40%,transparent)}.uog\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:border-l-black{border-left-color:var(--uog-color-black)}.uog\:border-l-blue{border-left-color:var(--uog-color-blue)}.uog\:border-l-green{border-left-color:var(--uog-color-green)}.uog\:border-l-grey-dark{border-left-color:var(--uog-color-grey-dark)}.uog\:border-l-grey-light{border-left-color:var(--uog-color-grey-light)}.uog\:border-l-red{border-left-color:var(--uog-color-red)}.uog\:border-l-white{border-left-color:var(--uog-color-white)}.uog\:border-l-yellow{border-left-color:var(--uog-color-yellow)}.uog\:bg-black{background-color:var(--uog-color-black)}.uog\:bg-black\/40{background-color:color-mix(in oklab,var(--uog-color-black)40%,transparent)}.uog\:bg-black\/60{background-color:color-mix(in oklab,var(--uog-color-black)60%,transparent)}.uog\:bg-blue{background-color:var(--uog-color-blue)}.uog\:bg-green{background-color:var(--uog-color-green)}.uog\:bg-grey-dark{background-color:var(--uog-color-grey-dark)}.uog\:bg-grey-dark-bg{background-color:var(--uog-color-grey-dark-bg)}.uog\:bg-grey-light{background-color:var(--uog-color-grey-light)}.uog\:bg-grey-light-bg{background-color:var(--uog-color-grey-light-bg)}.uog\:bg-red{background-color:var(--uog-color-red)}.uog\:bg-transparent{background-color:#0000}.uog\:bg-white{background-color:var(--uog-color-white)}.uog\:bg-white\/60{background-color:color-mix(in oklab,var(--uog-color-white)60%,transparent)}.uog\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-l{--tw-gradient-position:to left in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-radial{--tw-gradient-position:in oklab;background-image:radial-gradient(var(--tw-gradient-stops))}.uog\:from-black\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-black)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:from-white\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-white)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-black)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-white\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-white)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-30\%{--tw-gradient-via-position:30%}.uog\:to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:fill-black{fill:var(--uog-color-black)}.uog\:object-cover{object-fit:cover}.uog\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:p-1{padding:calc(var(--uog-spacing)*1)}.uog\:p-1\.5{padding:calc(var(--uog-spacing)*1.5)}.uog\:p-2{padding:calc(var(--uog-spacing)*2)}.uog\:p-2\.5{padding:calc(var(--uog-spacing)*2.5)}.uog\:p-3{padding:calc(var(--uog-spacing)*3)}.uog\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:p-5{padding:calc(var(--uog-spacing)*5)}.uog\:p-6{padding:calc(var(--uog-spacing)*6)}.uog\:p-7{padding:calc(var(--uog-spacing)*7)}.uog\:px-0{padding-inline:calc(var(--uog-spacing)*0)}.uog\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:px-5{padding-inline:calc(var(--uog-spacing)*5)}.uog\:px-6{padding-inline:calc(var(--uog-spacing)*6)}.uog\:px-8{padding-inline:calc(var(--uog-spacing)*8)}.uog\:py-0{padding-block:calc(var(--uog-spacing)*0)}.uog\:py-2{padding-block:calc(var(--uog-spacing)*2)}.uog\:py-3{padding-block:calc(var(--uog-spacing)*3)}.uog\:py-4{padding-block:calc(var(--uog-spacing)*4)}.uog\:pt-0{padding-top:calc(var(--uog-spacing)*0)}.uog\:pt-2{padding-top:calc(var(--uog-spacing)*2)}.uog\:pt-8{padding-top:calc(var(--uog-spacing)*8)}.uog\:pb-0{padding-bottom:calc(var(--uog-spacing)*0)}.uog\:pb-4{padding-bottom:calc(var(--uog-spacing)*4)}.uog\:pl-4{padding-left:calc(var(--uog-spacing)*4)}.uog\:pl-5{padding-left:calc(var(--uog-spacing)*5)}.uog\:text-center{text-align:center}.uog\:text-left{text-align:left}.uog\:font-serif{font-family:var(--uog-font-serif)}.uog\:text-2xl{font-size:var(--uog-text-2xl);line-height:var(--tw-leading,var(--uog-text-2xl--line-height))}.uog\:text-3xl{font-size:var(--uog-text-3xl);line-height:var(--tw-leading,var(--uog-text-3xl--line-height))}.uog\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}.uog\:text-base{font-size:var(--uog-text-base);line-height:var(--tw-leading,var(--uog-text-base--line-height))}.uog\:text-lg{font-size:var(--uog-text-lg);line-height:var(--tw-leading,var(--uog-text-lg--line-height))}.uog\:text-sm{font-size:var(--uog-text-sm);line-height:var(--tw-leading,var(--uog-text-sm--line-height))}.uog\:text-xl{font-size:var(--uog-text-xl);line-height:var(--tw-leading,var(--uog-text-xl--line-height))}.uog\:text-\[1\.5rem\]{font-size:1.5rem}.uog\:text-\[4rem\]{font-size:4rem}.uog\:text-\[6rem\]{font-size:6rem}.uog\:text-\[8rem\]{font-size:8rem}.uog\:text-\[14rem\]{font-size:14rem}.uog\:text-\[18rem\]{font-size:18rem}.uog\:leading-\[1\.4\]{--tw-leading:1.4;line-height:1.4}.uog\:leading-\[1\.6\]{--tw-leading:1.6;line-height:1.6}.uog\:leading-tight{--tw-leading:var(--uog-leading-tight);line-height:var(--uog-leading-tight)}.uog\:font-bold{--tw-font-weight:var(--uog-font-weight-bold);font-weight:var(--uog-font-weight-bold)}.uog\:font-light{--tw-font-weight:var(--uog-font-weight-light);font-weight:var(--uog-font-weight-light)}.uog\:font-medium{--tw-font-weight:var(--uog-font-weight-medium);font-weight:var(--uog-font-weight-medium)}.uog\:font-normal{--tw-font-weight:var(--uog-font-weight-normal);font-weight:var(--uog-font-weight-normal)}.uog\:text-black{color:var(--uog-color-black)}.uog\:text-black-contrast{color:var(--uog-color-black-contrast)}.uog\:text-black-on-light{color:var(--uog-color-black-on-light)}.uog\:text-blue{color:var(--uog-color-blue)}.uog\:text-blue-contrast{color:var(--uog-color-blue-contrast)}.uog\:text-blue-on-light{color:var(--uog-color-blue-on-light)}.uog\:text-body-copy{color:var(--uog-color-body-copy)}.uog\:text-body-copy-bold{color:var(--uog-color-body-copy-bold)}.uog\:text-body-copy-link{color:var(--uog-color-body-copy-link)}.uog\:text-body-copy-link-on-dark{color:var(--uog-color-body-copy-link-on-dark)}.uog\:text-body-copy-link-on-light{color:var(--uog-color-body-copy-link-on-light)}.uog\:text-body-copy-on-dark{color:var(--uog-color-body-copy-on-dark)}.uog\:text-green{color:var(--uog-color-green)}.uog\:text-green-contrast{color:var(--uog-color-green-contrast)}.uog\:text-grey-dark{color:var(--uog-color-grey-dark)}.uog\:text-grey-dark-contrast{color:var(--uog-color-grey-dark-contrast)}.uog\:text-grey-light-contrast{color:var(--uog-color-grey-light-contrast)}.uog\:text-red{color:var(--uog-color-red)}.uog\:text-red-contrast{color:var(--uog-color-red-contrast)}.uog\:text-white{color:var(--uog-color-white)}.uog\:text-white-contrast{color:var(--uog-color-white-contrast)}.uog\:text-yellow{color:var(--uog-color-yellow)}.uog\:text-yellow-contrast{color:var(--uog-color-yellow-contrast)}.uog\:italic{font-style:italic}.uog\:not-italic{font-style:normal}.uog\:no-underline{text-decoration-line:none}.uog\:underline{text-decoration-line:underline}.uog\:decoration-current{text-decoration-color:currentColor}.uog\:decoration-transparent{text-decoration-color:#0000}.uog\:decoration-1{text-decoration-thickness:1px}.uog\:opacity-0{opacity:0}.uog\:opacity-50{opacity:.5}.uog\:opacity-60{opacity:.6}.uog\:shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:blur-sm{--tw-blur:blur(var(--uog-blur-sm));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,)}.uog\:brightness-50{--tw-brightness:brightness(50%);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,)}.uog\:transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-\[transform\,color\,opacity\,visibility\]{transition-property:transform,color,opacity,visibility;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:duration-200{--tw-duration:.2s;transition-duration:.2s}.uog\:duration-300{--tw-duration:.3s;transition-duration:.3s}.uog\:ease-in-out{--tw-ease:var(--uog-ease-in-out);transition-timing-function:var(--uog-ease-in-out)}.uog\:ease-out{--tw-ease:var(--uog-ease-out);transition-timing-function:var(--uog-ease-out)}@media (hover:hover){.uog\:group-hover\:scale-110:is(:where(.uog\:group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.uog\:group-hover\:bg-yellow:is(:where(.uog\:group):hover *){background-color:var(--uog-color-yellow)}}.uog\:group-ui-checked\:opacity-100:is(:where(.uog\:group)[data-headlessui-state~=checked] *),.uog\:group-ui-checked\:opacity-100:is(:where([data-headlessui-state~=checked]) :where(.uog\:group) *){opacity:1}.uog\:group-hocus-visible\:bg-yellow:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){background-color:var(--uog-color-yellow)}.uog\:group-hocus-visible\:text-blue-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-blue-contrast)}.uog\:group-hocus-visible\:text-yellow-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-yellow-contrast)}.uog\:before\:absolute:before{content:var(--tw-content);position:absolute}.uog\:before\:top-0:before{content:var(--tw-content);top:calc(var(--uog-spacing)*0)}.uog\:before\:right-full:before{content:var(--tw-content);right:100%}.uog\:before\:z-\[-1\]:before{content:var(--tw-content);z-index:-1}.uog\:before\:h-full:before{content:var(--tw-content);height:100%}.uog\:before\:w-\[calc\(\(100vw-var\(--statistic-bg-width\)\)\/2\)\]:before{content:var(--tw-content);width:calc((100vw - var(--statistic-bg-width))/2)}.uog\:before\:bg-inherit:before{content:var(--tw-content);background-color:inherit}.uog\:after\:absolute:after{content:var(--tw-content);position:absolute}.uog\:after\:top-0:after{content:var(--tw-content);top:calc(var(--uog-spacing)*0)}.uog\:after\:left-full:after{content:var(--tw-content);left:100%}.uog\:after\:z-\[-1\]:after{content:var(--tw-content);z-index:-1}.uog\:after\:h-full:after{content:var(--tw-content);height:100%}.uog\:after\:w-\[calc\(\(100vw-var\(--statistic-bg-width\)\)\/2\)\]:after{content:var(--tw-content);width:calc((100vw - var(--statistic-bg-width))/2)}.uog\:after\:bg-inherit:after{content:var(--tw-content);background-color:inherit}.uog\:first\:before\:z-0:first-child:before,.uog\:last\:after\:z-0:last-child:after{content:var(--tw-content);z-index:0}.uog\:focus-within\:border-blue:focus-within{border-color:var(--uog-color-blue)}@media (hover:hover){.uog\:hover\:bg-grey-light:hover{background-color:var(--uog-color-grey-light)}.uog\:hover\:bg-red:hover{background-color:var(--uog-color-red)}.uog\:hover\:bg-red-focus:hover{background-color:var(--uog-color-red-focus)}.uog\:hover\:decoration-transparent:hover{text-decoration-color:#0000}}.uog\:focus\:bg-grey-light:focus{background-color:var(--uog-color-grey-light)}.uog\:focus\:bg-red-focus:focus{background-color:var(--uog-color-red-focus)}.uog\:focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.uog\:focus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus-visible\:ring-black:focus-visible{--tw-ring-color:var(--uog-color-black)}.uog\:focus-visible\:ring-blue:focus-visible{--tw-ring-color:var(--uog-color-blue)}.uog\:focus-visible\:ring-body-copy-link:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link)}.uog\:focus-visible\:ring-body-copy-link-on-light:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link-on-light)}.uog\:focus-visible\:ring-green:focus-visible{--tw-ring-color:var(--uog-color-green)}.uog\:focus-visible\:ring-red:focus-visible{--tw-ring-color:var(--uog-color-red)}.uog\:focus-visible\:ring-white:focus-visible{--tw-ring-color:var(--uog-color-white)}.uog\:focus-visible\:ring-yellow:focus-visible{--tw-ring-color:var(--uog-color-yellow)}.uog\:focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.uog\:focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.uog\:has-\[strong\]\:text-body-copy-bold:has(:is(strong)){color:var(--uog-color-body-copy-bold)}.uog\:data-\[closed\]\:opacity-0[data-closed]{opacity:0}.uog\:nth-\[2n\]\:border-red:nth-child(2n){border-color:var(--uog-color-red)}.uog\:nth-\[2n\]\:bg-red:nth-child(2n){background-color:var(--uog-color-red)}.uog\:nth-\[2n\]\:text-red-contrast:nth-child(2n){color:var(--uog-color-red-contrast)}.uog\:nth-\[3n\]\:border-yellow:nth-child(3n){border-color:var(--uog-color-yellow)}.uog\:nth-\[3n\]\:bg-yellow:nth-child(3n){background-color:var(--uog-color-yellow)}.uog\:nth-\[3n\]\:text-yellow-contrast:nth-child(3n){color:var(--uog-color-yellow-contrast)}.uog\:nth-\[4n\]\:border-blue:nth-child(4n){border-color:var(--uog-color-blue)}.uog\:nth-\[4n\]\:bg-blue:nth-child(4n){background-color:var(--uog-color-blue)}.uog\:nth-\[4n\]\:text-blue-contrast:nth-child(4n){color:var(--uog-color-blue-contrast)}@media (width>=40rem){.uog\:sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.uog\:sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.uog\:sm\:flex-row{flex-direction:row}.uog\:sm\:px-16{padding-inline:calc(var(--uog-spacing)*16)}.uog\:sm\:text-6xl{font-size:var(--uog-text-6xl);line-height:var(--tw-leading,var(--uog-text-6xl--line-height))}.uog\:sm\:before\:content-\[\"\"\]:before,.uog\:sm\:after\:content-\[\"\"\]:after{--tw-content:"";content:var(--tw-content)}}@media (width>=48rem){.uog\:md\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:md\:absolute{position:absolute}.uog\:md\:z-20{z-index:20}.uog\:md\:block{display:block}.uog\:md\:contents{display:contents}.uog\:md\:grid{display:grid}.uog\:md\:aspect-\[2\.625\]{aspect-ratio:2.625}.uog\:md\:w-1\/3{width:33.3333%}.uog\:md\:w-9{width:calc(var(--uog-spacing)*9)}.uog\:md\:flex-row{flex-direction:row}.uog\:md\:rounded-full{border-radius:3.40282e38px}.uog\:md\:bg-black\/70{background-color:color-mix(in oklab,var(--uog-color-black)70%,transparent)}.uog\:md\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:md\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:md\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}}@media (width>=64rem){.uog\:lg\:absolute{position:absolute}.uog\:lg\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:lg\:left-1\/2{left:50%}.uog\:lg\:container{width:100%}@media (width>=40rem){.uog\:lg\:container{max-width:40rem}}@media (width>=48rem){.uog\:lg\:container{max-width:48rem}}.uog\:lg\:container{max-width:64rem}@media (width>=80rem){.uog\:lg\:container{max-width:80rem}}@media (width>=96rem){.uog\:lg\:container{max-width:96rem}}.uog\:lg\:mx-auto{margin-inline:auto}.uog\:lg\:mt-auto{margin-top:auto}.uog\:lg\:ml-auto{margin-left:auto}.uog\:lg\:w-1\/2{width:50%}.uog\:lg\:max-w-7xl{max-width:var(--uog-container-7xl)}.uog\:lg\:max-w-\[50\%\]{max-width:50%}.uog\:lg\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.uog\:lg\:flex-row{flex-direction:row}.uog\:lg\:items-center{align-items:center}.uog\:lg\:items-end{align-items:flex-end}.uog\:lg\:bg-black\/80{background-color:color-mix(in oklab,var(--uog-color-black)80%,transparent)}.uog\:lg\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:lg\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:lg\:text-center{text-align:center}.uog\:lg\:text-right{text-align:right}.uog\:lg\:backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}}.uog\:ui-checked\:bg-black[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-black{background-color:var(--uog-color-black)}.uog\:ui-checked\:bg-blue[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-blue{background-color:var(--uog-color-blue)}.uog\:ui-checked\:bg-green[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-green{background-color:var(--uog-color-green)}.uog\:ui-checked\:bg-white[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-white{background-color:var(--uog-color-white)}.uog\:ui-checked\:bg-yellow[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:ui-selected\:mb-0[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:ui-selected\:border-2[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:ui-selected\:border-yellow[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:ui-selected\:bg-yellow[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:-translate-x-1:hover,.uog\:hocus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:translate-x-1:hover,.uog\:hocus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:bg-black:hover,.uog\:hocus-visible\:bg-black:focus-visible{background-color:var(--uog-color-black)}.uog\:hocus-visible\:bg-black-focus:hover,.uog\:hocus-visible\:bg-black-focus:focus-visible{background-color:var(--uog-color-black-focus)}.uog\:hocus-visible\:bg-blue:hover,.uog\:hocus-visible\:bg-blue:focus-visible{background-color:var(--uog-color-blue)}.uog\:hocus-visible\:bg-blue-focus:hover,.uog\:hocus-visible\:bg-blue-focus:focus-visible{background-color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:bg-green:hover,.uog\:hocus-visible\:bg-green:focus-visible{background-color:var(--uog-color-green)}.uog\:hocus-visible\:bg-green-focus:hover,.uog\:hocus-visible\:bg-green-focus:focus-visible{background-color:var(--uog-color-green-focus)}.uog\:hocus-visible\:bg-grey-light:hover,.uog\:hocus-visible\:bg-grey-light:focus-visible{background-color:var(--uog-color-grey-light)}.uog\:hocus-visible\:bg-red:hover,.uog\:hocus-visible\:bg-red:focus-visible{background-color:var(--uog-color-red)}.uog\:hocus-visible\:bg-red-focus:hover,.uog\:hocus-visible\:bg-red-focus:focus-visible{background-color:var(--uog-color-red-focus)}.uog\:hocus-visible\:bg-yellow:hover,.uog\:hocus-visible\:bg-yellow:focus-visible{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:bg-yellow-focus:hover,.uog\:hocus-visible\:bg-yellow-focus:focus-visible{background-color:var(--uog-color-yellow-focus)}.uog\:hocus-visible\:text-black-contrast:hover,.uog\:hocus-visible\:text-black-contrast:focus-visible{color:var(--uog-color-black-contrast)}.uog\:hocus-visible\:text-blue-contrast:hover,.uog\:hocus-visible\:text-blue-contrast:focus-visible{color:var(--uog-color-blue-contrast)}.uog\:hocus-visible\:text-blue-focus:hover,.uog\:hocus-visible\:text-blue-focus:focus-visible{color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:text-green-contrast:hover,.uog\:hocus-visible\:text-green-contrast:focus-visible{color:var(--uog-color-green-contrast)}.uog\:hocus-visible\:text-red-contrast:hover,.uog\:hocus-visible\:text-red-contrast:focus-visible{color:var(--uog-color-red-contrast)}.uog\:hocus-visible\:text-yellow-contrast:hover,.uog\:hocus-visible\:text-yellow-contrast:focus-visible{color:var(--uog-color-yellow-contrast)}.uog\:hocus-visible\:decoration-black:hover,.uog\:hocus-visible\:decoration-black:focus-visible{-webkit-text-decoration-color:var(--uog-color-black);text-decoration-color:var(--uog-color-black)}.uog\:hocus-visible\:decoration-transparent:hover,.uog\:hocus-visible\:decoration-transparent:focus-visible{text-decoration-color:#0000}.uog\:\[\&_p\:last-child\]\:mb-0 p:last-child{margin-bottom:calc(var(--uog-spacing)*0)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|
|
1
|
+
/*! tailwindcss v4.0.11 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--uog-font-serif:"Bitter",ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--uog-color-blue-600:oklch(.546 .245 262.881);--uog-color-gray-100:oklch(.967 .003 264.542);--uog-color-gray-300:oklch(.872 .01 258.338);--uog-color-gray-900:oklch(.21 .034 264.665);--uog-color-black:#000;--uog-color-white:#fff;--uog-spacing:.4rem;--uog-container-6xl:72rem;--uog-container-7xl:80rem;--uog-text-sm:1.4rem;--uog-text-sm--line-height:1.4;--uog-text-base:1.6rem;--uog-text-base--line-height:1.4;--uog-text-lg:1.8rem;--uog-text-lg--line-height:1.4;--uog-text-xl:2rem;--uog-text-xl--line-height:1.4;--uog-text-2xl:2.5rem;--uog-text-2xl--line-height:1.4;--uog-text-3xl:3rem;--uog-text-3xl--line-height:1.4;--uog-text-4xl:4rem;--uog-text-4xl--line-height:1.4;--uog-text-6xl:6rem;--uog-text-6xl--line-height:1.6;--uog-font-weight-light:300;--uog-font-weight-normal:400;--uog-font-weight-medium:500;--uog-font-weight-bold:700;--uog-leading-tight:1.25;--uog-radius-sm:.25rem;--uog-radius-md:.375rem;--uog-ease-out:cubic-bezier(0,0,.2,1);--uog-ease-in-out:cubic-bezier(.4,0,.2,1);--uog-animate-spin:spin 1s linear infinite;--uog-blur-sm:8px;--uog-aspect-video:16/9;--uog-default-transition-duration:.15s;--uog-default-transition-timing-function:cubic-bezier(.4,0,.2,1);--uog-color-white-contrast:#000;--uog-color-black-focus:#444;--uog-color-black-on-light:#000;--uog-color-black-contrast:#fff;--uog-color-red:#e51937;--uog-color-red-focus:#b3142c;--uog-color-red-contrast:#fff;--uog-color-yellow:#ffc429;--uog-color-yellow-focus:#ffe299;--uog-color-yellow-contrast:#000;--uog-color-blue:#187bb4;--uog-color-blue-focus:#135f8b;--uog-color-blue-on-light:#1775ab;--uog-color-blue-contrast:#fff;--uog-color-green:#318738;--uog-color-green-focus:#27682c;--uog-color-green-contrast:#fff;--uog-color-grey-light:#d8d8d8;--uog-color-grey-light-contrast:#000;--uog-color-grey-light-bg:#f5f5f5;--uog-color-grey-dark:#747676;--uog-color-grey-dark-contrast:#fff;--uog-color-grey-dark-bg:#222;--uog-color-body-copy:#555;--uog-color-body-copy-on-dark:#ccc;--uog-color-body-copy-bold:#333;--uog-color-body-copy-link:#187bb4;--uog-color-body-copy-link-on-light:#166ea2;--uog-color-body-copy-link-on-dark:#1d93d7;--uog-animate-fade-in:fade .25s ease-in-out 1 normal forwards}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--tw-max-content-width:137rem;font-size:62.5%}body{margin:0;padding:0;font-size:1.6rem}@keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}}@layer components;@layer utilities{.uog\:pointer-events-none{pointer-events:none}.uog\:invisible{visibility:hidden}.uog\:visible{visibility:visible}.uog\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:absolute{position:absolute}.uog\:fixed{position:fixed}.uog\:relative{position:relative}.uog\:inset-0{inset:calc(var(--uog-spacing)*0)}.uog\:top-0{top:calc(var(--uog-spacing)*0)}.uog\:top-1\/2{top:50%}.uog\:right-0{right:calc(var(--uog-spacing)*0)}.uog\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:left-0{left:calc(var(--uog-spacing)*0)}.uog\:left-1\/2{left:50%}.uog\:z-0{z-index:0}.uog\:z-10{z-index:10}.uog\:z-20{z-index:20}.uog\:z-50{z-index:50}.uog\:col-start-1{grid-column-start:1}.uog\:col-start-2{grid-column-start:2}.uog\:row-start-1{grid-row-start:1}.uog\:container{width:100%}@media (width>=40rem){.uog\:container{max-width:40rem}}@media (width>=48rem){.uog\:container{max-width:48rem}}@media (width>=64rem){.uog\:container{max-width:64rem}}@media (width>=80rem){.uog\:container{max-width:80rem}}@media (width>=96rem){.uog\:container{max-width:96rem}}.uog\:mx-auto{margin-inline:auto}.uog\:my-2{margin-block:calc(var(--uog-spacing)*2)}.uog\:my-4{margin-block:calc(var(--uog-spacing)*4)}.uog\:my-7{margin-block:calc(var(--uog-spacing)*7)}.uog\:mt-3\.75{margin-top:calc(var(--uog-spacing)*3.75)}.uog\:mt-7\.5{margin-top:calc(var(--uog-spacing)*7.5)}.uog\:mr-\[0\.3em\]{margin-right:.3em}.uog\:mr-auto{margin-right:auto}.uog\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:mb-1{margin-bottom:calc(var(--uog-spacing)*1)}.uog\:mb-2{margin-bottom:calc(var(--uog-spacing)*2)}.uog\:mb-3\.75{margin-bottom:calc(var(--uog-spacing)*3.75)}.uog\:mb-4{margin-bottom:calc(var(--uog-spacing)*4)}.uog\:ml-4{margin-left:calc(var(--uog-spacing)*4)}.uog\:ml-\[0\.25em\]{margin-left:.25em}.uog\:ml-auto{margin-left:auto}.uog\:block{display:block}.uog\:contents{display:contents}.uog\:flex{display:flex}.uog\:grid{display:grid}.uog\:hidden{display:none}.uog\:inline-block{display:inline-block}.uog\:inline-flex{display:inline-flex}.uog\:aspect-\[16\/9\]{aspect-ratio:16/9}.uog\:aspect-square{aspect-ratio:1}.uog\:aspect-video{aspect-ratio:var(--uog-aspect-video)}.uog\:size-4{width:calc(var(--uog-spacing)*4);height:calc(var(--uog-spacing)*4)}.uog\:h-1{height:calc(var(--uog-spacing)*1)}.uog\:h-2{height:calc(var(--uog-spacing)*2)}.uog\:h-5{height:calc(var(--uog-spacing)*5)}.uog\:h-9{height:calc(var(--uog-spacing)*9)}.uog\:h-16{height:calc(var(--uog-spacing)*16)}.uog\:h-\[\.75em\]{height:.75em}.uog\:h-\[1\.5em\]{height:1.5em}.uog\:h-\[1em\]{height:1em}.uog\:h-auto{height:auto}.uog\:h-fit{height:fit-content}.uog\:h-full{height:100%}.uog\:max-h-\[20rem\]{max-height:20rem}.uog\:max-h-\[80vh\]{max-height:80vh}.uog\:max-h-\[calc\(85vh-14rem\)\]{max-height:calc(85vh - 14rem)}.uog\:max-h-full{max-height:100%}.uog\:min-h-\[7rem\]{min-height:7rem}.uog\:min-h-\[50rem\]{min-height:50rem}.uog\:w-2{width:calc(var(--uog-spacing)*2)}.uog\:w-3\/4{width:75%}.uog\:w-5{width:calc(var(--uog-spacing)*5)}.uog\:w-16{width:calc(var(--uog-spacing)*16)}.uog\:w-24{width:calc(var(--uog-spacing)*24)}.uog\:w-\[0\.6em\]\!{width:.6em!important}.uog\:w-\[1em\]{width:1em}.uog\:w-fit{width:fit-content}.uog\:w-full{width:100%}.uog\:w-screen{width:100vw}.uog\:max-w-6xl{max-width:var(--uog-container-6xl)}.uog\:max-w-\[--tw-max-content-width\]{max-width:--tw-max-content-width}.uog\:flex-1{flex:1}.uog\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:rotate-90{rotate:90deg}.uog\:animate-fade-in{animation:var(--uog-animate-fade-in)}.uog\:animate-spin{animation:var(--uog-animate-spin)}.uog\:cursor-not-allowed{cursor:not-allowed}.uog\:cursor-pointer{cursor:pointer}.uog\:list-inside{list-style-position:inside}.uog\:list-\[circle\]{list-style-type:circle}.uog\:list-\[lower-alpha\]{list-style-type:lower-alpha}.uog\:list-\[lower-roman\]{list-style-type:lower-roman}.uog\:list-\[square\]{list-style-type:square}.uog\:list-decimal{list-style-type:decimal}.uog\:list-disc{list-style-type:disc}.uog\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.uog\:grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.uog\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}.uog\:grid-cols-\[1fr_4fr\]{grid-template-columns:1fr 4fr}.uog\:grid-cols-\[2fr_1fr\]{grid-template-columns:2fr 1fr}.uog\:grid-cols-\[4fr_1fr\]{grid-template-columns:4fr 1fr}.uog\:grid-cols-\[repeat\(var\(--items\)\,calc\(100\%\/var\(--display\)\)\)\]{grid-template-columns:repeat(var(--items),calc(100%/var(--display)))}.uog\:flex-col{flex-direction:column}.uog\:flex-col-reverse{flex-direction:column-reverse}.uog\:flex-row{flex-direction:row}.uog\:flex-row-reverse{flex-direction:row-reverse}.uog\:flex-wrap{flex-wrap:wrap}.uog\:items-center{align-items:center}.uog\:items-end{align-items:flex-end}.uog\:items-start{align-items:flex-start}.uog\:justify-around{justify-content:space-around}.uog\:justify-between{justify-content:space-between}.uog\:justify-center{justify-content:center}.uog\:justify-end{justify-content:flex-end}.uog\:justify-start{justify-content:flex-start}.uog\:gap-0\.5{gap:calc(var(--uog-spacing)*.5)}.uog\:gap-1{gap:calc(var(--uog-spacing)*1)}.uog\:gap-2{gap:calc(var(--uog-spacing)*2)}.uog\:gap-4{gap:calc(var(--uog-spacing)*4)}.uog\:gap-5{gap:calc(var(--uog-spacing)*5)}.uog\:gap-6{gap:calc(var(--uog-spacing)*6)}.uog\:gap-\[1em\]{gap:1em}.uog\:overflow-auto{overflow:auto}.uog\:overflow-hidden{overflow:hidden}.uog\:overflow-x-hidden{overflow-x:hidden}.uog\:rounded{border-radius:.25rem}.uog\:rounded-full{border-radius:3.40282e38px}.uog\:rounded-md{border-radius:var(--uog-radius-md)}.uog\:rounded-t-sm{border-top-left-radius:var(--uog-radius-sm);border-top-right-radius:var(--uog-radius-sm)}.uog\:rounded-b-md{border-bottom-right-radius:var(--uog-radius-md);border-bottom-left-radius:var(--uog-radius-md)}.uog\:border{border-style:var(--tw-border-style);border-width:1px}.uog\:border-0{border-style:var(--tw-border-style);border-width:0}.uog\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.uog\:border-t-0{border-top-style:var(--tw-border-style);border-top-width:0}.uog\:border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.uog\:border-b-4{border-bottom-style:var(--tw-border-style);border-bottom-width:4px}.uog\:border-l-3{border-left-style:var(--tw-border-style);border-left-width:3px}.uog\:border-l-4{border-left-style:var(--tw-border-style);border-left-width:4px}.uog\:border-l-8{border-left-style:var(--tw-border-style);border-left-width:8px}.uog\:border-black{border-color:var(--uog-color-black)}.uog\:border-blue{border-color:var(--uog-color-blue)}.uog\:border-gray-300{border-color:var(--uog-color-gray-300)}.uog\:border-green{border-color:var(--uog-color-green)}.uog\:border-grey-light{border-color:var(--uog-color-grey-light)}.uog\:border-red{border-color:var(--uog-color-red)}.uog\:border-white{border-color:var(--uog-color-white)}.uog\:border-white\/40{border-color:color-mix(in oklab,var(--uog-color-white)40%,transparent)}.uog\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:border-l-black{border-left-color:var(--uog-color-black)}.uog\:border-l-blue{border-left-color:var(--uog-color-blue)}.uog\:border-l-green{border-left-color:var(--uog-color-green)}.uog\:border-l-grey-dark{border-left-color:var(--uog-color-grey-dark)}.uog\:border-l-grey-light{border-left-color:var(--uog-color-grey-light)}.uog\:border-l-red{border-left-color:var(--uog-color-red)}.uog\:border-l-white{border-left-color:var(--uog-color-white)}.uog\:border-l-yellow{border-left-color:var(--uog-color-yellow)}.uog\:bg-black{background-color:var(--uog-color-black)}.uog\:bg-black\/40{background-color:color-mix(in oklab,var(--uog-color-black)40%,transparent)}.uog\:bg-black\/60{background-color:color-mix(in oklab,var(--uog-color-black)60%,transparent)}.uog\:bg-blue{background-color:var(--uog-color-blue)}.uog\:bg-green{background-color:var(--uog-color-green)}.uog\:bg-grey-dark{background-color:var(--uog-color-grey-dark)}.uog\:bg-grey-dark-bg{background-color:var(--uog-color-grey-dark-bg)}.uog\:bg-grey-light{background-color:var(--uog-color-grey-light)}.uog\:bg-grey-light-bg{background-color:var(--uog-color-grey-light-bg)}.uog\:bg-red{background-color:var(--uog-color-red)}.uog\:bg-transparent{background-color:#0000}.uog\:bg-white{background-color:var(--uog-color-white)}.uog\:bg-white\/60{background-color:color-mix(in oklab,var(--uog-color-white)60%,transparent)}.uog\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-l{--tw-gradient-position:to left in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-radial{--tw-gradient-position:in oklab;background-image:radial-gradient(var(--tw-gradient-stops))}.uog\:from-black\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-black)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:from-white\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-white)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-black)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-white\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-white)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-30\%{--tw-gradient-via-position:30%}.uog\:to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:fill-black{fill:var(--uog-color-black)}.uog\:object-cover{object-fit:cover}.uog\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:p-1{padding:calc(var(--uog-spacing)*1)}.uog\:p-1\.5{padding:calc(var(--uog-spacing)*1.5)}.uog\:p-2{padding:calc(var(--uog-spacing)*2)}.uog\:p-2\.5{padding:calc(var(--uog-spacing)*2.5)}.uog\:p-3{padding:calc(var(--uog-spacing)*3)}.uog\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:p-5{padding:calc(var(--uog-spacing)*5)}.uog\:p-6{padding:calc(var(--uog-spacing)*6)}.uog\:p-7{padding:calc(var(--uog-spacing)*7)}.uog\:px-0{padding-inline:calc(var(--uog-spacing)*0)}.uog\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:px-5{padding-inline:calc(var(--uog-spacing)*5)}.uog\:px-6{padding-inline:calc(var(--uog-spacing)*6)}.uog\:px-8{padding-inline:calc(var(--uog-spacing)*8)}.uog\:py-0{padding-block:calc(var(--uog-spacing)*0)}.uog\:py-2{padding-block:calc(var(--uog-spacing)*2)}.uog\:py-3{padding-block:calc(var(--uog-spacing)*3)}.uog\:py-4{padding-block:calc(var(--uog-spacing)*4)}.uog\:pt-0{padding-top:calc(var(--uog-spacing)*0)}.uog\:pt-2{padding-top:calc(var(--uog-spacing)*2)}.uog\:pt-8{padding-top:calc(var(--uog-spacing)*8)}.uog\:pb-0{padding-bottom:calc(var(--uog-spacing)*0)}.uog\:pb-4{padding-bottom:calc(var(--uog-spacing)*4)}.uog\:pl-4{padding-left:calc(var(--uog-spacing)*4)}.uog\:pl-5{padding-left:calc(var(--uog-spacing)*5)}.uog\:text-center{text-align:center}.uog\:text-left{text-align:left}.uog\:font-serif{font-family:var(--uog-font-serif)}.uog\:text-2xl{font-size:var(--uog-text-2xl);line-height:var(--tw-leading,var(--uog-text-2xl--line-height))}.uog\:text-3xl{font-size:var(--uog-text-3xl);line-height:var(--tw-leading,var(--uog-text-3xl--line-height))}.uog\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}.uog\:text-base{font-size:var(--uog-text-base);line-height:var(--tw-leading,var(--uog-text-base--line-height))}.uog\:text-lg{font-size:var(--uog-text-lg);line-height:var(--tw-leading,var(--uog-text-lg--line-height))}.uog\:text-sm{font-size:var(--uog-text-sm);line-height:var(--tw-leading,var(--uog-text-sm--line-height))}.uog\:text-xl{font-size:var(--uog-text-xl);line-height:var(--tw-leading,var(--uog-text-xl--line-height))}.uog\:text-\[1\.5rem\]{font-size:1.5rem}.uog\:text-\[8rem\]{font-size:8rem}.uog\:text-\[12rem\]{font-size:12rem}.uog\:text-\[15rem\]{font-size:15rem}.uog\:leading-\[1\.4\]{--tw-leading:1.4;line-height:1.4}.uog\:leading-\[1\.6\]{--tw-leading:1.6;line-height:1.6}.uog\:leading-tight{--tw-leading:var(--uog-leading-tight);line-height:var(--uog-leading-tight)}.uog\:font-bold{--tw-font-weight:var(--uog-font-weight-bold);font-weight:var(--uog-font-weight-bold)}.uog\:font-light{--tw-font-weight:var(--uog-font-weight-light);font-weight:var(--uog-font-weight-light)}.uog\:font-medium{--tw-font-weight:var(--uog-font-weight-medium);font-weight:var(--uog-font-weight-medium)}.uog\:font-normal{--tw-font-weight:var(--uog-font-weight-normal);font-weight:var(--uog-font-weight-normal)}.uog\:text-black{color:var(--uog-color-black)}.uog\:text-black-contrast{color:var(--uog-color-black-contrast)}.uog\:text-black-on-light{color:var(--uog-color-black-on-light)}.uog\:text-blue{color:var(--uog-color-blue)}.uog\:text-blue-600{color:var(--uog-color-blue-600)}.uog\:text-blue-contrast{color:var(--uog-color-blue-contrast)}.uog\:text-blue-on-light{color:var(--uog-color-blue-on-light)}.uog\:text-body-copy{color:var(--uog-color-body-copy)}.uog\:text-body-copy-bold{color:var(--uog-color-body-copy-bold)}.uog\:text-body-copy-link{color:var(--uog-color-body-copy-link)}.uog\:text-body-copy-link-on-dark{color:var(--uog-color-body-copy-link-on-dark)}.uog\:text-body-copy-link-on-light{color:var(--uog-color-body-copy-link-on-light)}.uog\:text-body-copy-on-dark{color:var(--uog-color-body-copy-on-dark)}.uog\:text-gray-900{color:var(--uog-color-gray-900)}.uog\:text-green{color:var(--uog-color-green)}.uog\:text-green-contrast{color:var(--uog-color-green-contrast)}.uog\:text-grey-dark{color:var(--uog-color-grey-dark)}.uog\:text-grey-dark-contrast{color:var(--uog-color-grey-dark-contrast)}.uog\:text-grey-light-contrast{color:var(--uog-color-grey-light-contrast)}.uog\:text-red{color:var(--uog-color-red)}.uog\:text-red-contrast{color:var(--uog-color-red-contrast)}.uog\:text-white{color:var(--uog-color-white)}.uog\:text-white-contrast{color:var(--uog-color-white-contrast)}.uog\:text-yellow{color:var(--uog-color-yellow)}.uog\:text-yellow-contrast{color:var(--uog-color-yellow-contrast)}.uog\:italic{font-style:italic}.uog\:not-italic{font-style:normal}.uog\:no-underline{text-decoration-line:none}.uog\:underline{text-decoration-line:underline}.uog\:decoration-current{text-decoration-color:currentColor}.uog\:decoration-transparent{text-decoration-color:#0000}.uog\:decoration-1{text-decoration-thickness:1px}.uog\:opacity-0{opacity:0}.uog\:opacity-50{opacity:.5}.uog\:opacity-60{opacity:.6}.uog\:shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:blur-sm{--tw-blur:blur(var(--uog-blur-sm));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,)}.uog\:brightness-50{--tw-brightness:brightness(50%);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,)}.uog\:transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-\[transform\,color\,opacity\,visibility\]{transition-property:transform,color,opacity,visibility;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:duration-200{--tw-duration:.2s;transition-duration:.2s}.uog\:duration-300{--tw-duration:.3s;transition-duration:.3s}.uog\:ease-in-out{--tw-ease:var(--uog-ease-in-out);transition-timing-function:var(--uog-ease-in-out)}.uog\:ease-out{--tw-ease:var(--uog-ease-out);transition-timing-function:var(--uog-ease-out)}.uog\:select-none{-webkit-user-select:none;user-select:none}.uog\:group-focus-within\:border-blue:is(:where(.uog\:group):focus-within *){border-color:var(--uog-color-blue)}.uog\:group-focus-within\:outline-none:is(:where(.uog\:group):focus-within *){--tw-outline-style:none;outline-style:none}@media (hover:hover){.uog\:group-hover\:scale-110:is(:where(.uog\:group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.uog\:group-hover\:bg-yellow:is(:where(.uog\:group):hover *){background-color:var(--uog-color-yellow)}}.uog\:group-ui-checked\:opacity-100:is(:where(.uog\:group)[data-headlessui-state~=checked] *),.uog\:group-ui-checked\:opacity-100:is(:where([data-headlessui-state~=checked]) :where(.uog\:group) *){opacity:1}.uog\:group-hocus-visible\:bg-yellow:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){background-color:var(--uog-color-yellow)}.uog\:group-hocus-visible\:text-blue-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-blue-contrast)}.uog\:group-hocus-visible\:text-yellow-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-yellow-contrast)}.uog\:before\:absolute:before{content:var(--tw-content);position:absolute}.uog\:before\:top-0:before{content:var(--tw-content);top:calc(var(--uog-spacing)*0)}.uog\:before\:right-full:before{content:var(--tw-content);right:100%}.uog\:before\:z-\[-1\]:before{content:var(--tw-content);z-index:-1}.uog\:before\:h-full:before{content:var(--tw-content);height:100%}.uog\:before\:w-\[calc\(\(100vw-var\(--statistic-bg-width\)\)\/2\)\]:before{content:var(--tw-content);width:calc((100vw - var(--statistic-bg-width))/2)}.uog\:before\:bg-inherit:before{content:var(--tw-content);background-color:inherit}.uog\:after\:absolute:after{content:var(--tw-content);position:absolute}.uog\:after\:top-0:after{content:var(--tw-content);top:calc(var(--uog-spacing)*0)}.uog\:after\:left-full:after{content:var(--tw-content);left:100%}.uog\:after\:z-\[-1\]:after{content:var(--tw-content);z-index:-1}.uog\:after\:h-full:after{content:var(--tw-content);height:100%}.uog\:after\:w-\[calc\(\(100vw-var\(--statistic-bg-width\)\)\/2\)\]:after{content:var(--tw-content);width:calc((100vw - var(--statistic-bg-width))/2)}.uog\:after\:bg-inherit:after{content:var(--tw-content);background-color:inherit}.uog\:first\:before\:z-0:first-child:before{content:var(--tw-content);z-index:0}.uog\:last\:border-b-0:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.uog\:last\:after\:z-0:last-child:after{content:var(--tw-content);z-index:0}.uog\:focus-within\:border-blue:focus-within{border-color:var(--uog-color-blue)}@media (hover:hover){.uog\:hover\:bg-gray-100:hover{background-color:var(--uog-color-gray-100)}.uog\:hover\:bg-grey-light:hover{background-color:var(--uog-color-grey-light)}.uog\:hover\:bg-red:hover{background-color:var(--uog-color-red)}.uog\:hover\:bg-red-focus:hover{background-color:var(--uog-color-red-focus)}.uog\:hover\:decoration-transparent:hover{text-decoration-color:#0000}}.uog\:focus\:bg-gray-100:focus{background-color:var(--uog-color-gray-100)}.uog\:focus\:bg-grey-light:focus{background-color:var(--uog-color-grey-light)}.uog\:focus\:bg-red-focus:focus{background-color:var(--uog-color-red-focus)}.uog\:focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.uog\:focus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus-visible\:ring-black:focus-visible{--tw-ring-color:var(--uog-color-black)}.uog\:focus-visible\:ring-blue:focus-visible{--tw-ring-color:var(--uog-color-blue)}.uog\:focus-visible\:ring-body-copy-link:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link)}.uog\:focus-visible\:ring-body-copy-link-on-light:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link-on-light)}.uog\:focus-visible\:ring-green:focus-visible{--tw-ring-color:var(--uog-color-green)}.uog\:focus-visible\:ring-red:focus-visible{--tw-ring-color:var(--uog-color-red)}.uog\:focus-visible\:ring-white:focus-visible{--tw-ring-color:var(--uog-color-white)}.uog\:focus-visible\:ring-yellow:focus-visible{--tw-ring-color:var(--uog-color-yellow)}.uog\:focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.uog\:focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.uog\:has-\[strong\]\:text-body-copy-bold:has(:is(strong)){color:var(--uog-color-body-copy-bold)}.uog\:data-\[closed\]\:opacity-0[data-closed]{opacity:0}.uog\:nth-\[2n\]\:border-red:nth-child(2n){border-color:var(--uog-color-red)}.uog\:nth-\[2n\]\:bg-red:nth-child(2n){background-color:var(--uog-color-red)}.uog\:nth-\[2n\]\:text-red-contrast:nth-child(2n){color:var(--uog-color-red-contrast)}.uog\:nth-\[3n\]\:border-yellow:nth-child(3n){border-color:var(--uog-color-yellow)}.uog\:nth-\[3n\]\:bg-yellow:nth-child(3n){background-color:var(--uog-color-yellow)}.uog\:nth-\[3n\]\:text-yellow-contrast:nth-child(3n){color:var(--uog-color-yellow-contrast)}.uog\:nth-\[4n\]\:border-blue:nth-child(4n){border-color:var(--uog-color-blue)}.uog\:nth-\[4n\]\:bg-blue:nth-child(4n){background-color:var(--uog-color-blue)}.uog\:nth-\[4n\]\:text-blue-contrast:nth-child(4n){color:var(--uog-color-blue-contrast)}@media (width>=40rem){.uog\:sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.uog\:sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.uog\:sm\:flex-row{flex-direction:row}.uog\:sm\:px-16{padding-inline:calc(var(--uog-spacing)*16)}.uog\:sm\:text-6xl{font-size:var(--uog-text-6xl);line-height:var(--tw-leading,var(--uog-text-6xl--line-height))}.uog\:sm\:before\:content-\[\"\"\]:before,.uog\:sm\:after\:content-\[\"\"\]:after{--tw-content:"";content:var(--tw-content)}}@media (width>=48rem){.uog\:md\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:md\:absolute{position:absolute}.uog\:md\:z-20{z-index:20}.uog\:md\:block{display:block}.uog\:md\:contents{display:contents}.uog\:md\:grid{display:grid}.uog\:md\:aspect-\[2\.625\]{aspect-ratio:2.625}.uog\:md\:w-1\/3{width:33.3333%}.uog\:md\:w-9{width:calc(var(--uog-spacing)*9)}.uog\:md\:flex-row{flex-direction:row}.uog\:md\:rounded-full{border-radius:3.40282e38px}.uog\:md\:bg-black\/70{background-color:color-mix(in oklab,var(--uog-color-black)70%,transparent)}.uog\:md\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:md\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:md\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}}@media (width>=64rem){.uog\:lg\:absolute{position:absolute}.uog\:lg\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:lg\:left-1\/2{left:50%}.uog\:lg\:container{width:100%}@media (width>=40rem){.uog\:lg\:container{max-width:40rem}}@media (width>=48rem){.uog\:lg\:container{max-width:48rem}}.uog\:lg\:container{max-width:64rem}@media (width>=80rem){.uog\:lg\:container{max-width:80rem}}@media (width>=96rem){.uog\:lg\:container{max-width:96rem}}.uog\:lg\:mx-auto{margin-inline:auto}.uog\:lg\:mt-auto{margin-top:auto}.uog\:lg\:ml-auto{margin-left:auto}.uog\:lg\:w-1\/2{width:50%}.uog\:lg\:max-w-7xl{max-width:var(--uog-container-7xl)}.uog\:lg\:max-w-\[50\%\]{max-width:50%}.uog\:lg\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.uog\:lg\:flex-row{flex-direction:row}.uog\:lg\:items-center{align-items:center}.uog\:lg\:items-end{align-items:flex-end}.uog\:lg\:bg-black\/80{background-color:color-mix(in oklab,var(--uog-color-black)80%,transparent)}.uog\:lg\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:lg\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:lg\:text-center{text-align:center}.uog\:lg\:text-right{text-align:right}.uog\:lg\:backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}}.uog\:ui-open\:border-blue[data-headlessui-state~=open],:where([data-headlessui-state~=open]) .uog\:ui-open\:border-blue{border-color:var(--uog-color-blue)}.uog\:ui-checked\:bg-black[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-black{background-color:var(--uog-color-black)}.uog\:ui-checked\:bg-blue[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-blue{background-color:var(--uog-color-blue)}.uog\:ui-checked\:bg-green[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-green{background-color:var(--uog-color-green)}.uog\:ui-checked\:bg-white[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-white{background-color:var(--uog-color-white)}.uog\:ui-checked\:bg-yellow[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:ui-selected\:mb-0[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:ui-selected\:border-2[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:ui-selected\:border-yellow[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:ui-selected\:bg-yellow[data-headlessui-state~=selected],:where([data-headlessui-state~=selected]) .uog\:ui-selected\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:ui-active\:bg-gray-100[data-headlessui-state~=active],:where([data-headlessui-state~=active]) .uog\:ui-active\:bg-gray-100{background-color:var(--uog-color-gray-100)}.uog\:hocus-visible\:-translate-x-1:hover,.uog\:hocus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:translate-x-1:hover,.uog\:hocus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:bg-black:hover,.uog\:hocus-visible\:bg-black:focus-visible{background-color:var(--uog-color-black)}.uog\:hocus-visible\:bg-black-focus:hover,.uog\:hocus-visible\:bg-black-focus:focus-visible{background-color:var(--uog-color-black-focus)}.uog\:hocus-visible\:bg-blue:hover,.uog\:hocus-visible\:bg-blue:focus-visible{background-color:var(--uog-color-blue)}.uog\:hocus-visible\:bg-blue-focus:hover,.uog\:hocus-visible\:bg-blue-focus:focus-visible{background-color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:bg-green:hover,.uog\:hocus-visible\:bg-green:focus-visible{background-color:var(--uog-color-green)}.uog\:hocus-visible\:bg-green-focus:hover,.uog\:hocus-visible\:bg-green-focus:focus-visible{background-color:var(--uog-color-green-focus)}.uog\:hocus-visible\:bg-grey-light:hover,.uog\:hocus-visible\:bg-grey-light:focus-visible{background-color:var(--uog-color-grey-light)}.uog\:hocus-visible\:bg-red:hover,.uog\:hocus-visible\:bg-red:focus-visible{background-color:var(--uog-color-red)}.uog\:hocus-visible\:bg-red-focus:hover,.uog\:hocus-visible\:bg-red-focus:focus-visible{background-color:var(--uog-color-red-focus)}.uog\:hocus-visible\:bg-yellow:hover,.uog\:hocus-visible\:bg-yellow:focus-visible{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:bg-yellow-focus:hover,.uog\:hocus-visible\:bg-yellow-focus:focus-visible{background-color:var(--uog-color-yellow-focus)}.uog\:hocus-visible\:text-black-contrast:hover,.uog\:hocus-visible\:text-black-contrast:focus-visible{color:var(--uog-color-black-contrast)}.uog\:hocus-visible\:text-blue-contrast:hover,.uog\:hocus-visible\:text-blue-contrast:focus-visible{color:var(--uog-color-blue-contrast)}.uog\:hocus-visible\:text-blue-focus:hover,.uog\:hocus-visible\:text-blue-focus:focus-visible{color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:text-green-contrast:hover,.uog\:hocus-visible\:text-green-contrast:focus-visible{color:var(--uog-color-green-contrast)}.uog\:hocus-visible\:text-red-contrast:hover,.uog\:hocus-visible\:text-red-contrast:focus-visible{color:var(--uog-color-red-contrast)}.uog\:hocus-visible\:text-yellow-contrast:hover,.uog\:hocus-visible\:text-yellow-contrast:focus-visible{color:var(--uog-color-yellow-contrast)}.uog\:hocus-visible\:decoration-black:hover,.uog\:hocus-visible\:decoration-black:focus-visible{-webkit-text-decoration-color:var(--uog-color-black);text-decoration-color:var(--uog-color-black)}.uog\:hocus-visible\:decoration-transparent:hover,.uog\:hocus-visible\:decoration-transparent:focus-visible{text-decoration-color:#0000}.uog\:\[\&_p\:last-child\]\:mb-0 p:last-child{margin-bottom:calc(var(--uog-spacing)*0)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { FontAwesomeIcon as
|
|
3
|
-
import { twMerge as
|
|
4
|
-
import { tv as
|
|
5
|
-
var
|
|
1
|
+
import { jsxs as o, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { FontAwesomeIcon as c } from "@fortawesome/react-fontawesome";
|
|
3
|
+
import { twMerge as f } from "tailwind-merge";
|
|
4
|
+
import { tv as x } from "tailwind-variants";
|
|
5
|
+
var h = {
|
|
6
6
|
prefix: "fal",
|
|
7
7
|
iconName: "spinner-third",
|
|
8
8
|
icon: [
|
|
@@ -12,7 +12,7 @@ var d = {
|
|
|
12
12
|
"f3f4",
|
|
13
13
|
"M463.9 376c7.6 4.4 17.5 1.8 21.4-6.1c17.1-34.3 26.7-73 26.7-113.9C512 120 405.9 8.8 272 .5c-8.8-.5-16 6.7-16 15.5s7.2 15.9 16 16.6C388.2 40.8 480 137.7 480 256c0 35.1-8.1 68.3-22.5 97.9c-3.9 8-1.3 17.7 6.4 22.1z"
|
|
14
14
|
]
|
|
15
|
-
},
|
|
15
|
+
}, d = {
|
|
16
16
|
prefix: "fak",
|
|
17
17
|
iconName: "gryphon-statue",
|
|
18
18
|
icon: [
|
|
@@ -23,65 +23,54 @@ var d = {
|
|
|
23
23
|
"M166.4 257.6c-25.6-19.2-43.2-38.4-43.2-38.4s0 33.6-43.2 33.6H46.4c-14.4 0-24 9.6-24 20.8v9.6c0 4.8 4.8 9.6 9.6 9.6h180.8s3.2-1.6 0-3.2c-9.6-8-30.4-22.4-46.4-32zm38.4-62.4c9.6 0 17.6 1.6 25.6 4.8 3.2-17.6 6.4-35.2 1.6-46.4L200 51.2l-19.2 72-38.4 12.8-57.6-48 32 102.4c3.2 11.2 16 24 30.4 36.8 12.8-19.2 33.6-33.6 57.6-32zm-9.6-44.8c4.8-1.6 11.2 1.6 12.8 6.4 1.6 4.8-1.6 11.2-6.4 12.8-4.8 1.6-11.2-1.6-12.8-6.4-1.6-4.8 1.6-11.2 6.4-12.8zm-48 14.4c4.8-1.6 11.2 1.6 12.8 6.4 1.6 4.8-1.6 11.2-6.4 12.8s-11.2-1.6-12.8-6.4 1.6-11.2 6.4-12.8zm81.6 46.4c-6.4-3.2-14.4-4.8-22.4-4.8-20.8 0-40 11.2-49.6 28.8C180.8 256 208 272 208 272s12.8-30.4 20.8-60.8zm1.6-112C256 70.4 224 48 232 17.6c9.6-35.2 86.4-9.6 99.2-3.2 73.6 35.2 112 89.6 112 89.6s27.2 33.6-1.6 25.6c-16-4.8-49.6-27.2-83.2-38.4-35.2-9.6-75.2 0-89.6 24-38.4 62.4 1.6 102.4 1.6 102.4s6.4 6.4 14.4 12.8c6.4 4.8 17.6 9.6 17.6 9.6h-72s16-44.8 16-81.6c0-12.8-20.8-54.4-16-59.2zm267.2 291.2h-11.2v-68.8h11.2c6.4 0 11.2-4.8 11.2-11.2 0-6.4-4.8-11.2-11.2-11.2h-14.4c-9.6 6.4-20.8 11.2-32 11.2H400c-19.2 0-35.2 14.4-35.2 30.4 0 22.4-9.6 44.8-27.2 60.8-6.4 4.8-12.8 9.6-19.2 12.8h180.8c6.4 0 11.2-4.8 11.2-11.2-1.6-6.4-6.4-12.8-12.8-12.8zm-264-86.4c-4.8 0-8-1.6-11.2-3.2l-3.2 3.2-1.6 1.6h-184c-4.8 0-9.6-1.6-14.4-4.8h-8C4.8 300.8 0 305.6 0 312c0 6.4 4.8 11.2 11.2 11.2h11.2V392H11.2C4.8 392 0 396.8 0 403.2c0 6.4 4.8 11.2 11.2 11.2h211.2c-28.8-14.4-48-41.6-48-73.6 0-16 12.8-28.8 28.8-28.8s28.8 12.8 28.8 28.8v1.6c0 16 16 28.8 35.2 28.8 19.2 0 35.2-14.4 35.2-30.4 0-12.8 3.2-25.6 9.6-36.8h-78.4zm216-94.4h-6.4C422.4 96 331.2 100.8 320 100.8c-41.6 8-57.6 38.4-54.4 76.8 3.2 48 59.2 65.6 92.8 65.6 3.2 0 6.4 3.2 6.4 6.4s-1.6 6.4-4.8 6.4H246.4c-11.2 0-20.8 9.6-20.8 20.8v9.6c0 4.8 4.8 9.6 9.6 9.6h89.6c17.6-22.4 44.8-36.8 76.8-36.8h49.6V256c0-4.8 0-9.6-1.6-14.4h3.2c4.8 0 9.6 6.4 9.6 14.4s-4.8 14.4-9.6 14.4H400c-46.4 0-81.6 33.6-81.6 73.6 0 24-20.8 41.6-48 41.6s-48-19.2-48-41.6c0-9.6-8-17.6-17.6-17.6-9.6 0-17.6 8-17.6 17.6 0 40 36.8 73.6 81.6 73.6s81.6-33.6 81.6-73.6c0-24 20.8-41.6 48-41.6h52.8c24 0 41.6-20.8 41.6-44.8 0-28.8-19.2-48-43.2-48z"
|
|
24
24
|
]
|
|
25
25
|
};
|
|
26
|
-
function
|
|
27
|
-
const
|
|
26
|
+
function w({ size: t = "lg", color: n = "red", className: i, children: r }) {
|
|
27
|
+
const s = x({
|
|
28
28
|
slots: {
|
|
29
|
-
base: "uog:flex uog:flex-col uog:items-center uog:justify-center uog:relative",
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
icon: "",
|
|
33
|
-
text: "uog:font-serif"
|
|
29
|
+
base: "uog:flex uog:flex-col uog:items-center uog:justify-center uog:relative uog:w-fit uog:h-fit uog:gap-2",
|
|
30
|
+
container: "uog:relative uog:aspect-square uog:flex uog:flex-col uog:items-center uog:justify-center uog:w-[1em]",
|
|
31
|
+
spinner: "uog:animate-spin uog:z-0",
|
|
32
|
+
icon: "uog:absolute uog:w-[0.6em]!",
|
|
33
|
+
text: "uog:font-serif uog:text-center"
|
|
34
34
|
},
|
|
35
35
|
variants: {
|
|
36
36
|
size: {
|
|
37
37
|
sm: {
|
|
38
|
-
|
|
39
|
-
icon: "uog:text-[4rem]",
|
|
38
|
+
container: "uog:text-[8rem]",
|
|
40
39
|
text: "uog:sr-only"
|
|
41
40
|
},
|
|
42
41
|
md: {
|
|
43
|
-
|
|
44
|
-
icon: "uog:text-[6rem]",
|
|
42
|
+
container: "uog:text-[12rem]",
|
|
45
43
|
text: "uog:text-[1.5rem]"
|
|
46
44
|
},
|
|
47
45
|
lg: {
|
|
48
|
-
|
|
49
|
-
icon: "uog:text-[8rem]",
|
|
46
|
+
container: "uog:text-[15rem]",
|
|
50
47
|
text: "uog:text-lg"
|
|
51
48
|
}
|
|
52
49
|
},
|
|
53
50
|
color: {
|
|
54
51
|
red: {
|
|
55
|
-
|
|
56
|
-
spinner: "uog:text-red",
|
|
57
|
-
text: "uog:text-red"
|
|
52
|
+
base: "uog:text-red"
|
|
58
53
|
},
|
|
59
54
|
blue: {
|
|
60
|
-
|
|
61
|
-
spinner: "uog:text-blue",
|
|
62
|
-
text: "uog:text-blue"
|
|
55
|
+
base: "uog:text-blue"
|
|
63
56
|
},
|
|
64
57
|
green: {
|
|
65
|
-
|
|
66
|
-
spinner: "uog:text-green",
|
|
67
|
-
text: "uog:text-green"
|
|
58
|
+
base: "uog:text-green"
|
|
68
59
|
},
|
|
69
60
|
yellow: {
|
|
70
|
-
|
|
71
|
-
spinner: "uog:text-yellow",
|
|
72
|
-
text: "uog:text-yellow"
|
|
61
|
+
base: "uog:text-yellow"
|
|
73
62
|
}
|
|
74
63
|
}
|
|
75
64
|
}
|
|
76
|
-
}), { base:
|
|
77
|
-
return /* @__PURE__ */
|
|
78
|
-
/* @__PURE__ */
|
|
79
|
-
|
|
80
|
-
/* @__PURE__ */ e(
|
|
81
|
-
|
|
82
|
-
|
|
65
|
+
}), { base: a, icon: g, container: u, spinner: l, text: m } = s({ size: t, color: n });
|
|
66
|
+
return /* @__PURE__ */ o("div", { className: `uofg-loading-indicator ${f(a(), i)}`, children: [
|
|
67
|
+
/* @__PURE__ */ o("div", { className: u(), children: [
|
|
68
|
+
/* @__PURE__ */ e(c, { className: `uofg-loading-indicator-spinner ${l()}`, icon: h }),
|
|
69
|
+
/* @__PURE__ */ e(c, { className: `uofg-loading-indicator-icon ${g()}`, icon: d })
|
|
70
|
+
] }),
|
|
71
|
+
/* @__PURE__ */ e("span", { className: m(), children: r })
|
|
83
72
|
] });
|
|
84
73
|
}
|
|
85
74
|
export {
|
|
86
|
-
|
|
75
|
+
w as LoadingIndicator
|
|
87
76
|
};
|
package/dist/modal.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as e, jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import { g as f } from "./solid-
|
|
2
|
+
import { g as f } from "./solid-DyAB2_Ed.js";
|
|
3
3
|
import { FontAwesomeIcon as b } from "@fortawesome/react-fontawesome";
|
|
4
4
|
import { Dialog as x, DialogBackdrop as h, CloseButton as w, DialogPanel as y } from "@headlessui/react";
|
|
5
5
|
import { tv as N } from "tailwind-variants";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { jsx as t, jsxs as m, Fragment as c } from "react/jsx-runtime";
|
|
2
|
+
import { h as a } from "./solid-DyAB2_Ed.js";
|
|
3
|
+
import { FontAwesomeIcon as f } from "@fortawesome/react-fontawesome";
|
|
4
|
+
import { ListboxButton as p } from "@headlessui/react";
|
|
5
|
+
import { twMerge as l } from "tailwind-merge";
|
|
6
|
+
import { tv as b } from "tailwind-variants";
|
|
7
|
+
function d({ children: o, className: e, ...n }) {
|
|
8
|
+
const r = b({
|
|
9
|
+
slots: {
|
|
10
|
+
button: [
|
|
11
|
+
"uofg-select-button",
|
|
12
|
+
"ui-open:rounded-b-none",
|
|
13
|
+
"ui-open:border-blue",
|
|
14
|
+
"flex",
|
|
15
|
+
"w-full",
|
|
16
|
+
"items-center",
|
|
17
|
+
"justify-between",
|
|
18
|
+
"rounded-md",
|
|
19
|
+
"border",
|
|
20
|
+
"border-gray-300",
|
|
21
|
+
"bg-white",
|
|
22
|
+
"px-4",
|
|
23
|
+
"py-2",
|
|
24
|
+
"shadow-sm",
|
|
25
|
+
"transition-colors",
|
|
26
|
+
"group-focus-within:border-blue",
|
|
27
|
+
"group-focus-within:outline-none"
|
|
28
|
+
],
|
|
29
|
+
icon: "ui-open:rotate-180 h-5 w-5 text-gray-400 transition-transform"
|
|
30
|
+
}
|
|
31
|
+
}), { button: s, icon: i } = r();
|
|
32
|
+
return /* @__PURE__ */ t(p, { ...n, className: l(s(), e), children: (u) => /* @__PURE__ */ m(c, { children: [
|
|
33
|
+
typeof o == "function" ? o(u) : o,
|
|
34
|
+
/* @__PURE__ */ t(f, { className: i(), icon: a })
|
|
35
|
+
] }) });
|
|
36
|
+
}
|
|
37
|
+
d.displayName = "SelectButton";
|
|
38
|
+
export {
|
|
39
|
+
d as SelectButton
|
|
40
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { jsx as e, jsxs as a } from "react/jsx-runtime";
|
|
2
|
+
import { e as l } from "./regular-BRNZck7j.js";
|
|
3
|
+
import { FontAwesomeIcon as m } from "@fortawesome/react-fontawesome";
|
|
4
|
+
import { ListboxOption as p } from "@headlessui/react";
|
|
5
|
+
import { twMerge as f } from "tailwind-merge";
|
|
6
|
+
import { tv as b } from "tailwind-variants";
|
|
7
|
+
function x({ children: o, className: r, ...i }) {
|
|
8
|
+
const s = b({
|
|
9
|
+
slots: {
|
|
10
|
+
option: [
|
|
11
|
+
"uofg-select-option",
|
|
12
|
+
"uog:relative",
|
|
13
|
+
"uog:cursor-pointer",
|
|
14
|
+
"uog:select-none",
|
|
15
|
+
"uog:border-b",
|
|
16
|
+
"uog:border-gray-300",
|
|
17
|
+
"uog:px-4",
|
|
18
|
+
"uog:py-2",
|
|
19
|
+
"uog:text-gray-900",
|
|
20
|
+
"uog:transition-colors",
|
|
21
|
+
"uog:last:border-b-0",
|
|
22
|
+
"uog:hover:bg-gray-100",
|
|
23
|
+
"uog:focus:bg-gray-100",
|
|
24
|
+
"uog:focus:outline-none",
|
|
25
|
+
"uog:ui-active:bg-gray-100"
|
|
26
|
+
],
|
|
27
|
+
icon: "uog:h-5 uog:w-5 uog:text-blue-600"
|
|
28
|
+
},
|
|
29
|
+
variants: {
|
|
30
|
+
selected: {
|
|
31
|
+
true: {
|
|
32
|
+
icon: "uog:visible"
|
|
33
|
+
},
|
|
34
|
+
false: {
|
|
35
|
+
icon: "uog:invisible"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}), { option: n, icon: u } = s();
|
|
40
|
+
return /* @__PURE__ */ e(p, { ...i, className: f(n(), r), children: ({ focus: g, selected: t, ...c }) => /* @__PURE__ */ a("div", { className: "flex items-center", children: [
|
|
41
|
+
/* @__PURE__ */ e("span", { className: "flex-1", children: typeof o == "function" ? o({ focus: g, selected: t, ...c }) : o }),
|
|
42
|
+
/* @__PURE__ */ e(m, { icon: l, className: u({ selected: t }) })
|
|
43
|
+
] }) });
|
|
44
|
+
}
|
|
45
|
+
x.displayName = "SelectOptions";
|
|
46
|
+
export {
|
|
47
|
+
x as SelectOption
|
|
48
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { ListboxOptions as g } from "@headlessui/react";
|
|
3
|
+
import { twMerge as i } from "tailwind-merge";
|
|
4
|
+
function s({ children: o, className: u, ...e }) {
|
|
5
|
+
const r = i(
|
|
6
|
+
"uog:z-10",
|
|
7
|
+
"uog:max-h-[20rem]",
|
|
8
|
+
"uog:w-full",
|
|
9
|
+
"uog:overflow-auto",
|
|
10
|
+
"uog:rounded-b-md",
|
|
11
|
+
"uog:border",
|
|
12
|
+
"uog:border-t-0",
|
|
13
|
+
"uog:border-gray-300",
|
|
14
|
+
"uog:bg-white",
|
|
15
|
+
"uog:shadow-md",
|
|
16
|
+
"uog:group-focus-within:border-blue",
|
|
17
|
+
"uog:group-focus-within:outline-none",
|
|
18
|
+
"uog:ui-open:border-blue",
|
|
19
|
+
"uog:md:absolute",
|
|
20
|
+
"uog:transition",
|
|
21
|
+
"uog:duration-300",
|
|
22
|
+
"uog:ease-out",
|
|
23
|
+
"uog:data-[closed]:opacity-0",
|
|
24
|
+
u
|
|
25
|
+
);
|
|
26
|
+
return /* @__PURE__ */ t(g, { ...e, className: r, children: o });
|
|
27
|
+
}
|
|
28
|
+
s.displayName = "SelectOptions";
|
|
29
|
+
export {
|
|
30
|
+
s as SelectOptions
|
|
31
|
+
};
|
package/dist/select.d.ts
ADDED
package/dist/select.js
ADDED
|
@@ -38,7 +38,17 @@ var a = {
|
|
|
38
38
|
"f00d",
|
|
39
39
|
"M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"
|
|
40
40
|
]
|
|
41
|
-
}, f = c,
|
|
41
|
+
}, f = c, o = {
|
|
42
|
+
prefix: "fas",
|
|
43
|
+
iconName: "chevron-down",
|
|
44
|
+
icon: [
|
|
45
|
+
512,
|
|
46
|
+
512,
|
|
47
|
+
[],
|
|
48
|
+
"f078",
|
|
49
|
+
"M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"
|
|
50
|
+
]
|
|
51
|
+
}, s = {
|
|
42
52
|
prefix: "fas",
|
|
43
53
|
iconName: "play",
|
|
44
54
|
icon: [
|
|
@@ -58,7 +68,7 @@ var a = {
|
|
|
58
68
|
"f10e",
|
|
59
69
|
"M448 296c0 66.3-53.7 120-120 120l-8 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l8 0c30.9 0 56-25.1 56-56l0-8-64 0c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l64 0c35.3 0 64 28.7 64 64l0 32 0 32 0 72zm-256 0c0 66.3-53.7 120-120 120l-8 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l8 0c30.9 0 56-25.1 56-56l0-8-64 0c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l64 0c35.3 0 64 28.7 64 64l0 32 0 32 0 72z"
|
|
60
70
|
]
|
|
61
|
-
},
|
|
71
|
+
}, r = {
|
|
62
72
|
prefix: "fas",
|
|
63
73
|
iconName: "phone",
|
|
64
74
|
icon: [
|
|
@@ -73,8 +83,9 @@ export {
|
|
|
73
83
|
i as a,
|
|
74
84
|
l as b,
|
|
75
85
|
a as c,
|
|
76
|
-
|
|
86
|
+
r as d,
|
|
77
87
|
s as e,
|
|
78
88
|
e as f,
|
|
79
|
-
f as g
|
|
89
|
+
f as g,
|
|
90
|
+
o as h
|
|
80
91
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uoguelph/react-components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "University of Guelph React Components Library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"bugs": {
|
|
73
73
|
"url": "https://github.com/ccswbs/uofg-components/issues"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "453ece1338d763a7f9af963568cc2a97e8493818"
|
|
76
76
|
}
|