@equal-experts/kuat-react 0.5.0 → 0.8.0
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/components/ui/carousel/carousel.d.ts +38 -0
- package/dist/components/ui/carousel/index.d.ts +2 -0
- package/dist/components/ui/kuat-carousel/kuat-carousel.d.ts +9 -25
- package/dist/components/ui/sonner/index.d.ts +4 -0
- package/dist/components/ui/sonner/sonner-content.d.ts +15 -0
- package/dist/components/ui/sonner/sonner.d.ts +21 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1066 -1051
- package/dist/sonner-content-B6xwQO7z.js +107 -0
- package/dist/sonner-content.css +1 -0
- package/dist/sonner.d.ts +1 -0
- package/dist/sonner.js +7 -0
- package/dist/styles.css +1 -1
- package/package.json +9 -4
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { default as useEmblaCarousel, UseEmblaCarouselType } from 'embla-carousel-react';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
4
|
+
type CarouselOptions = UseEmblaCarouselType[0];
|
|
5
|
+
type CarouselPlugins = Parameters<typeof useEmblaCarousel>[1];
|
|
6
|
+
type CarouselOrientation = "horizontal" | "vertical";
|
|
7
|
+
export type CarouselItemBasis = 1 | 2 | 3;
|
|
8
|
+
export type CarouselEventHandler = (api: CarouselApi, eventName: string) => void;
|
|
9
|
+
export type CarouselEventHandlers = Partial<Record<string, CarouselEventHandler>>;
|
|
10
|
+
interface CarouselContextValue {
|
|
11
|
+
api: CarouselApi;
|
|
12
|
+
basis: CarouselItemBasis;
|
|
13
|
+
orientation: CarouselOrientation;
|
|
14
|
+
scrollPrev: () => void;
|
|
15
|
+
scrollNext: () => void;
|
|
16
|
+
canScrollPrev: boolean;
|
|
17
|
+
canScrollNext: boolean;
|
|
18
|
+
}
|
|
19
|
+
declare function useCarousel(): CarouselContextValue;
|
|
20
|
+
export interface CarouselProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
21
|
+
opts?: CarouselOptions;
|
|
22
|
+
basis?: CarouselItemBasis;
|
|
23
|
+
orientation?: CarouselOrientation;
|
|
24
|
+
plugins?: CarouselPlugins;
|
|
25
|
+
setApi?: (api: CarouselApi) => void;
|
|
26
|
+
events?: CarouselEventHandlers;
|
|
27
|
+
}
|
|
28
|
+
declare const Carousel: React.ForwardRefExoticComponent<CarouselProps & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
export interface CarouselContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
30
|
+
}
|
|
31
|
+
declare const CarouselContent: React.ForwardRefExoticComponent<CarouselContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
32
|
+
export interface CarouselItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
33
|
+
basis?: CarouselItemBasis;
|
|
34
|
+
}
|
|
35
|
+
declare const CarouselItem: React.ForwardRefExoticComponent<CarouselItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
36
|
+
declare const CarouselPrevious: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
37
|
+
declare const CarouselNext: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
38
|
+
export { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, useCarousel };
|
|
@@ -1,32 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useCarousel, CarouselEventHandler, CarouselEventHandlers, CarouselContentProps, CarouselItemProps, CarouselProps, CarouselItemBasis } from '../carousel';
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
type
|
|
4
|
-
|
|
5
|
-
type KuatCarouselOrientation = "horizontal" | "vertical";
|
|
6
|
-
export type KuatCarouselSlidesPerView = 1 | 2 | 3;
|
|
7
|
-
interface KuatCarouselContextValue {
|
|
8
|
-
api: KuatCarouselApi;
|
|
9
|
-
slidesPerView: KuatCarouselSlidesPerView;
|
|
10
|
-
orientation: KuatCarouselOrientation;
|
|
11
|
-
scrollPrev: () => void;
|
|
12
|
-
scrollNext: () => void;
|
|
13
|
-
canScrollPrev: boolean;
|
|
14
|
-
canScrollNext: boolean;
|
|
15
|
-
}
|
|
16
|
-
declare function useKuatCarousel(): KuatCarouselContextValue;
|
|
17
|
-
export interface KuatCarouselProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
18
|
-
opts?: KuatCarouselOptions;
|
|
3
|
+
export type KuatCarouselSlidesPerView = CarouselItemBasis;
|
|
4
|
+
export interface KuatCarouselProps extends Omit<CarouselProps, "basis"> {
|
|
19
5
|
slidesPerView?: KuatCarouselSlidesPerView;
|
|
20
|
-
orientation?: KuatCarouselOrientation;
|
|
21
|
-
plugins?: Parameters<typeof useEmblaCarousel>[1];
|
|
22
6
|
}
|
|
23
7
|
declare const KuatCarousel: React.ForwardRefExoticComponent<KuatCarouselProps & React.RefAttributes<HTMLDivElement>>;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
declare const KuatCarouselContent: React.ForwardRefExoticComponent<
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
declare const KuatCarouselItem: React.ForwardRefExoticComponent<KuatCarouselItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
+
type KuatCarouselContentProps = CarouselContentProps;
|
|
9
|
+
type KuatCarouselItemProps = CarouselItemProps;
|
|
10
|
+
declare const KuatCarouselContent: React.ForwardRefExoticComponent<CarouselContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
declare const KuatCarouselItem: React.ForwardRefExoticComponent<CarouselItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
30
12
|
declare const KuatCarouselPrevious: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
31
13
|
declare const KuatCarouselNext: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
14
|
+
declare const useKuatCarousel: typeof useCarousel;
|
|
15
|
+
export type { KuatCarouselContentProps, KuatCarouselItemProps, CarouselEventHandler, CarouselEventHandlers };
|
|
32
16
|
export { KuatCarousel, KuatCarouselContent, KuatCarouselItem, KuatCarouselPrevious, KuatCarouselNext, useKuatCarousel, };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { Sonner, SONNER_POSITIONS, toast } from './sonner';
|
|
2
|
+
export type { SonnerAnnouncement, SonnerPosition, SonnerProps, SonnerToastOptions, } from './sonner';
|
|
3
|
+
export { SonnerContent } from './sonner-content';
|
|
4
|
+
export type { SonnerContentAction, SonnerContentProps } from './sonner-content';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
export type SonnerContentAction = {
|
|
3
|
+
label: string;
|
|
4
|
+
onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
5
|
+
ariaLabel?: string;
|
|
6
|
+
};
|
|
7
|
+
export type SonnerContentProps = {
|
|
8
|
+
className?: string;
|
|
9
|
+
title: React.ReactNode;
|
|
10
|
+
description?: React.ReactNode;
|
|
11
|
+
leftIcon?: React.ReactNode;
|
|
12
|
+
showLeftIcon?: boolean;
|
|
13
|
+
action?: SonnerContentAction;
|
|
14
|
+
};
|
|
15
|
+
export declare function SonnerContent({ className, title, description, leftIcon, showLeftIcon, action, }: SonnerContentProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { toast as sonnerToast, ExternalToast, ToasterProps as SonnerPrimitiveProps } from 'sonner';
|
|
2
|
+
|
|
3
|
+
declare const SONNER_POSITIONS: readonly ["top-left", "top-center", "top-right", "bottom-left", "bottom-center", "bottom-right"];
|
|
4
|
+
export type SonnerPosition = (typeof SONNER_POSITIONS)[number];
|
|
5
|
+
export type SonnerAnnouncement = "polite" | "assertive";
|
|
6
|
+
type SonnerMessage = Parameters<typeof sonnerToast>[0];
|
|
7
|
+
export type SonnerToastOptions = Omit<ExternalToast, "important"> & {
|
|
8
|
+
announcement?: SonnerAnnouncement;
|
|
9
|
+
};
|
|
10
|
+
export type SonnerProps = SonnerPrimitiveProps;
|
|
11
|
+
export declare function Sonner({ className, position, visibleToasts, expand, containerAriaLabel, toastOptions, ...props }: SonnerProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare function toast(message: SonnerMessage, options?: SonnerToastOptions): string | number;
|
|
13
|
+
export declare namespace toast {
|
|
14
|
+
var success: (message: SonnerMessage, options?: SonnerToastOptions) => string | number;
|
|
15
|
+
var info: (message: SonnerMessage, options?: SonnerToastOptions) => string | number;
|
|
16
|
+
var warning: (message: SonnerMessage, options?: SonnerToastOptions) => string | number;
|
|
17
|
+
var error: (message: SonnerMessage, options?: SonnerToastOptions) => string | number;
|
|
18
|
+
var loading: (message: SonnerMessage, options?: SonnerToastOptions) => string | number;
|
|
19
|
+
var dismiss: (id?: number | string) => string | number;
|
|
20
|
+
}
|
|
21
|
+
export { SONNER_POSITIONS };
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-font-weight:initial;--tw-tracking:initial}}}.content-card{width:100%;max-width:373px;min-width:calc(var(--spacing,.25rem)*0);border-style:var(--tw-border-style);--tw-border-style:solid;border-style:solid;border-width:1px;border-color:var(--border);background-color:var(--card);padding-bottom:calc(var(--spacing,.25rem)*2);flex-direction:column;align-items:flex-start;display:flex;position:relative}.content-card__media{flex-shrink:0;width:100%;height:192px;position:relative}.content-card__media-img{pointer-events:none;inset:calc(var(--spacing,.25rem)*0);object-fit:cover;width:100%;max-width:none;height:100%}.content-card__body{align-items:flex-start;gap:calc(var(--spacing,.25rem)*4);width:100%;padding:calc(var(--spacing,.25rem)*4);flex-direction:column;flex-shrink:0;display:flex;position:relative}.content-card__heading-row{flex-shrink:0;justify-content:space-between;align-items:flex-start;width:100%;display:flex;overflow:clip}.content-card__heading-left{align-items:flex-start;gap:calc(var(--spacing,.25rem)*1);flex-direction:column;flex:1 0 0;min-width:1px;min-height:1px;display:flex;position:relative}.content-card__header-accessory{justify-content:flex-start;align-items:flex-start;gap:calc(var(--spacing,.25rem)*2);flex-direction:column;flex-shrink:0;display:flex;overflow:clip}.content-card__heading-meta{align-items:center;gap:calc(var(--spacing,.25rem)*2);flex-shrink:0;display:flex}.content-card__badge{align-items:center;display:flex}.content-card__category{font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500);white-space:nowrap;color:var(--ee-blue-700)}.content-card__title{width:100%;max-width:250px;font-size:var(--text-2xl,1.5rem);line-height:var(--tw-leading,var(--text-2xl--line-height,calc(2/1.5)));--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600);--tw-tracking:calc(var(--tracking-normal) - .025em);letter-spacing:calc(var(--tracking-normal) - .025em);color:var(--foreground)}.content-card__content{flex-shrink:0;width:100%;position:relative;overflow:clip}.content-card__content-text{white-space:pre-wrap;color:var(--foreground)}.content-card__custom-content,.content-card__footer{flex-shrink:0;width:100%;position:relative;overflow:clip}@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-font-weight:initial}}}.kuat-header{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;width:100%;position:relative}.kuat-header--default{border-color:var(--border);background-color:var(--kuat-header-default-background);color:var(--kuat-header-default-foreground)}.kuat-header--bold{background-color:var(--kuat-header-bold-background);color:var(--kuat-header-bold-foreground);border-color:var(--kuat-header-bold-foreground-secondary)}@supports (color:color-mix(in lab,red,red)){.kuat-header--bold{border-color:color-mix(in srgb,var(--kuat-header-bold-foreground-secondary)20%,transparent)}}.kuat-header__desktop{display:none}@media (min-width:768px){.kuat-header__desktop{height:98px;padding-inline:calc(var(--spacing,.25rem)*6);justify-content:space-between;align-items:center;display:flex}}.kuat-header__desktop-left{align-items:center;gap:calc(var(--spacing,.25rem)*5);display:flex}.kuat-header__desktop-title{letter-spacing:-.025em;font-size:30px;font-weight:600;line-height:30px;font-family:var(--font-sans)}.kuat-header--default .kuat-header__desktop-title{color:var(--kuat-header-default-foreground)}.kuat-header--bold .kuat-header__desktop-title{color:var(--kuat-header-bold-foreground)}.kuat-header__desktop-right{align-items:center;gap:calc(var(--spacing,.25rem)*8);display:flex}.kuat-header__mobile{min-height:103px;padding-inline:calc(var(--spacing,.25rem)*3);padding-block:calc(var(--spacing,.25rem)*4);justify-content:space-between;align-items:flex-start;display:flex}@media (min-width:768px){.kuat-header__mobile{display:none}}.kuat-header__mobile-left{gap:calc(var(--spacing,.25rem)*2);flex-direction:column;display:flex}.kuat-header__mobile-title{font-size:var(--text-base,1rem);line-height:var(--tw-leading,var(--text-base--line-height, 1.5 ));--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600)}.kuat-header--default .kuat-header__mobile-title{color:var(--kuat-header-default-foreground-secondary)}.kuat-header--bold .kuat-header__mobile-title{color:var(--kuat-header-bold-foreground-secondary)}.kuat-header__separator{width:1px;height:49px}.kuat-header--default .kuat-header__separator{background-color:var(--border)}.kuat-header--bold .kuat-header__separator{background-color:var(--kuat-header-bold-foreground-secondary)}@supports (color:color-mix(in lab,red,red)){.kuat-header--bold .kuat-header__separator{background-color:color-mix(in srgb,var(--kuat-header-bold-foreground-secondary)30%,transparent)}}.ee-logo__text{fill:currentColor}.ee-logo--grey{color:gray}.ee-logo--white{color:#fff}.ee-logo--desktop{width:188px;height:50px}@media (min-width:768px){.ee-logo--desktop{width:188px;height:50px}}.ee-logo--mobile{width:147px;height:39px}.kuat-carousel{width:100%;position:relative}.kuat-carousel__viewport{overflow:hidden}.kuat-carousel__content{display:flex}.kuat-carousel__content--horizontal{margin-left:calc(var(--spacing,.25rem)*-2)}.kuat-carousel__content--vertical{margin-top:calc(var(--spacing,.25rem)*-2);flex-direction:column}.kuat-carousel__item{min-width:calc(var(--spacing,.25rem)*0);border-radius:calc(var(--radius) - 2px);flex-grow:0;flex-shrink:0;box-shadow:0 1px 2px #0000000d}.kuat-carousel__item--horizontal{padding-left:calc(var(--spacing,.25rem)*2)}.kuat-carousel__item--vertical{padding-top:calc(var(--spacing,.25rem)*2)}.kuat-carousel__item--basis-1{flex-basis:100%}.kuat-carousel__item--basis-2{flex-basis:50%}.kuat-carousel__item--basis-3{flex-basis:33.3333%}.kuat-carousel__prev,.kuat-carousel__next{top:calc(var(--spacing,.25rem)*0);z-index:10;width:calc(var(--spacing,.25rem)*8);height:calc(var(--spacing,.25rem)*8);border-radius:calc(var(--radius) - 4px);background-color:var(--primary);color:var(--primary-foreground);opacity:1;transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-duration:.15s;transition-timing-function:default;justify-content:center;align-items:center;display:flex;position:absolute;box-shadow:0 1px 2px #0000000d}.kuat-carousel__prev:disabled,.kuat-carousel__next:disabled{pointer-events:none;opacity:.5}.kuat-carousel__prev:hover:not(:disabled),.kuat-carousel__next:hover:not(:disabled){background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){.kuat-carousel__prev:hover:not(:disabled),.kuat-carousel__next:hover:not(:disabled){background-color:color-mix(in srgb,var(--primary)90%,transparent)}}.kuat-carousel__prev{right:calc(var(--spacing,.25rem)*8)}.kuat-carousel__next{right:calc(var(--spacing,.25rem)*0)}.kuat-carousel__prev svg,.kuat-carousel__next svg{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4)}@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-leading:initial;--tw-font-weight:initial}}}.kuat-logo-lockup{container:logo-lockup/inline-size}.kuat-logo-lockup--light,.kuat-logo-lockup--light .kuat-logo-lockup__service-name,.kuat-logo-lockup--light .kuat-logo-lockup__demo-title,.kuat-logo-lockup--light .kuat-logo-lockup__demo-by{color:var(--kuat-header-default-foreground)}.kuat-logo-lockup--dark,.kuat-logo-lockup--dark .kuat-logo-lockup__service-name,.kuat-logo-lockup--dark .kuat-logo-lockup__demo-title,.kuat-logo-lockup--dark .kuat-logo-lockup__demo-by{color:var(--kuat-header-bold-foreground)}.kuat-logo-lockup--service .kuat-logo-lockup__service-inner{align-items:flex-start;gap:calc(2*var(--spacing));flex-direction:column;display:flex}.kuat-logo-lockup__separator{width:1px;height:calc(6*var(--spacing));flex-shrink:0;display:none}.kuat-logo-lockup--light .kuat-logo-lockup__separator{background-color:var(--border)}.kuat-logo-lockup--dark .kuat-logo-lockup__separator{background-color:var(--kuat-header-bold-foreground-secondary)}@supports (color:color-mix(in lab,red,red)){.kuat-logo-lockup--dark .kuat-logo-lockup__separator{background-color:color-mix(in srgb,var(--kuat-header-bold-foreground-secondary)30%,transparent)}}@container logo-lockup (min-width:320px){.kuat-logo-lockup--service .kuat-logo-lockup__service-inner{align-items:center;gap:calc(4*var(--spacing));flex-direction:row}.kuat-logo-lockup__separator{display:block}}@supports not (container-type:inline-size){@media (min-width:768px){.kuat-logo-lockup--service .kuat-logo-lockup__service-inner{align-items:center;gap:calc(4*var(--spacing));flex-direction:row}.kuat-logo-lockup__separator{display:block}}}.kuat-logo-lockup__service-name{letter-spacing:var(--tracking-tight);font-size:1.875rem;font-weight:600;line-height:1;font-family:var(--font-sans)}.kuat-logo-lockup__logo-wrap,.kuat-logo-lockup__logo-icon{flex-shrink:0}.kuat-logo-lockup__logo.kuat-logo-lockup__logo--demo{height:calc(6*var(--spacing));width:auto}.kuat-logo-lockup__logo:not(.kuat-logo-lockup__logo--demo){width:188px;height:50px}.kuat-logo-lockup__logo-icon{height:calc(10*var(--spacing));width:43px}.kuat-logo-lockup--demo .kuat-logo-lockup__demo-title{letter-spacing:var(--tracking-tight);font-size:1.875rem;font-weight:600;line-height:1.2;font-family:var(--font-sans);margin:0 0 calc(2*var(--spacing))0}.kuat-logo-lockup__demo-attribution{align-items:center;gap:calc(2*var(--spacing));display:flex}.kuat-logo-lockup__demo-by{font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-leading:calc(var(--spacing,.25rem)*4);line-height:calc(var(--spacing,.25rem)*4);--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500);letter-spacing:var(--tracking-normal);font-family:var(--font-sans)}.kuat-logo-lockup__demo-logo-wrap{align-items:center;display:flex}.kuat-logo-lockup__demo-logo-wrap .kuat-logo-lockup__logo{height:calc(5*var(--spacing));width:auto}.kuat-logo-lockup__demo-logo-wrap .kuat-logo-lockup__logo-icon{height:calc(5*var(--spacing));width:22px}.ee-logo-icon{color:var(--primary)}@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-outline-style:solid;--tw-font-weight:initial;--tw-border-style:solid;--tw-leading:initial}}}.breadcrumb-list{margin:calc(var(--spacing,.25rem)*0);align-items:center;gap:calc(var(--spacing,.25rem)*2);padding:calc(var(--spacing,.25rem)*0);flex-wrap:wrap;list-style-type:none;display:flex}.breadcrumb-item{align-items:center;gap:calc(var(--spacing,.25rem)*2);display:inline-flex}.breadcrumb-link{color:var(--foreground);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(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));text-decoration-line:none}.breadcrumb-link:hover{color:var(--foreground);text-decoration-line:underline}.breadcrumb-link:focus-visible{outline-style:var(--tw-outline-style);outline-offset:2px;outline-width:2px;outline-color:var(--ring);border-radius:.25rem}.breadcrumb-page{pointer-events:none;--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500);color:var(--muted-foreground)}.breadcrumb-separator{color:var(--muted-foreground);-webkit-user-select:none;user-select:none;display:inline-flex}.breadcrumb-separator__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4)}.breadcrumb-ellipsis{color:var(--muted-foreground);display:inline-flex}.breadcrumb-ellipsis__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4)}.breadcrumb-dropdown-trigger{cursor:pointer;border-style:var(--tw-border-style);padding:calc(var(--spacing,.25rem)*0);color:var(--foreground);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(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));font:inherit;background-color:#0000;border-width:0;text-decoration-line:none;display:flex}.breadcrumb-dropdown-trigger:hover{text-decoration-line:underline}.breadcrumb-dropdown-trigger:focus-visible{outline-style:var(--tw-outline-style);outline-offset:2px;outline-width:2px;outline-color:var(--ring);border-radius:.25rem}.breadcrumb-dropdown-trigger__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4);flex-shrink:0}.breadcrumb-ellipsis-trigger{padding:calc(var(--spacing,.25rem)*0);--tw-leading:1;line-height:1}.breadcrumb .sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial}}}.dropdown-menu-content{z-index:50;min-width:calc(var(--spacing,.25rem)*32);border-radius:calc(var(--radius) - 2px);border-style:var(--tw-border-style);border-width:1px;border-color:var(--border);background-color:var(--background);padding:calc(var(--spacing,.25rem)*1);overflow:hidden;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a}.dropdown-menu-content[data-state=open]{animation:.15s ease-out dropdown-menu-in}.dropdown-menu-content[data-state=closed]{animation:.15s ease-out dropdown-menu-out}@keyframes dropdown-menu-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes dropdown-menu-out{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.95)}}.dropdown-menu-item,.dropdown-menu-checkbox-item,.dropdown-menu-radio-item{cursor:default;padding-inline:calc(var(--spacing,.25rem)*2);padding-block:calc(var(--spacing,.25rem)*1.5);font-size:var(--text-sm,.875rem);line-height:var(--tw-leading,var(--text-sm--line-height,calc(1.25/.875)));--tw-leading:calc(var(--spacing,.25rem)*5);line-height:calc(var(--spacing,.25rem)*5);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(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));--tw-outline-style:none;-webkit-user-select:none;user-select:none;border-radius:.25rem;outline-style:none;align-items:center;display:flex;position:relative}.dropdown-menu-item[data-highlighted],.dropdown-menu-checkbox-item[data-highlighted],.dropdown-menu-radio-item[data-highlighted]{background-color:var(--accent);color:var(--accent-foreground)}.dropdown-menu-item[data-disabled],.dropdown-menu-checkbox-item[data-disabled],.dropdown-menu-radio-item[data-disabled]{pointer-events:none;opacity:.5}.dropdown-menu-item--inset,.dropdown-menu-checkbox-item--inset,.dropdown-menu-radio-item--inset{padding-left:calc(var(--spacing,.25rem)*8)}.dropdown-menu-label{padding-inline:calc(var(--spacing,.25rem)*2);padding-block:calc(var(--spacing,.25rem)*1.5);font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600);color:var(--muted-foreground)}.dropdown-menu-label--inset{padding-left:calc(var(--spacing,.25rem)*8)}.dropdown-menu-separator{margin-inline:calc(var(--spacing,.25rem)*-1);margin-block:calc(var(--spacing,.25rem)*1);background-color:var(--border);height:1px}.dropdown-menu-shortcut{font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-tracking:calc(var(--tracking-normal) + .05em);letter-spacing:calc(var(--tracking-normal) + .05em);color:var(--muted-foreground);margin-left:auto}.dropdown-menu-sub-trigger{cursor:default;padding-inline:calc(var(--spacing,.25rem)*2);padding-block:calc(var(--spacing,.25rem)*1.5);font-size:var(--text-sm,.875rem);line-height:var(--tw-leading,var(--text-sm--line-height,calc(1.25/.875)));--tw-outline-style:none;-webkit-user-select:none;user-select:none;border-radius:.25rem;outline-style:none;align-items:center;display:flex}.dropdown-menu-sub-trigger[data-highlighted]{background-color:var(--accent);color:var(--accent-foreground)}.dropdown-menu-sub-trigger__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4);margin-left:auto}.dropdown-menu-sub-content{min-width:calc(var(--spacing,.25rem)*32)}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}
|
|
1
|
+
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-font-weight:initial;--tw-tracking:initial}}}.content-card{width:100%;max-width:373px;min-width:calc(var(--spacing,.25rem)*0);border-style:var(--tw-border-style);--tw-border-style:solid;border-style:solid;border-width:1px;border-color:var(--border);background-color:var(--card);padding-bottom:calc(var(--spacing,.25rem)*2);flex-direction:column;align-items:flex-start;display:flex;position:relative}.content-card__media{flex-shrink:0;width:100%;height:192px;position:relative}.content-card__media-img{pointer-events:none;inset:calc(var(--spacing,.25rem)*0);object-fit:cover;width:100%;max-width:none;height:100%}.content-card__body{align-items:flex-start;gap:calc(var(--spacing,.25rem)*4);width:100%;padding:calc(var(--spacing,.25rem)*4);flex-direction:column;flex-shrink:0;display:flex;position:relative}.content-card__heading-row{flex-shrink:0;justify-content:space-between;align-items:flex-start;width:100%;display:flex;overflow:clip}.content-card__heading-left{align-items:flex-start;gap:calc(var(--spacing,.25rem)*1);flex-direction:column;flex:1 0 0;min-width:1px;min-height:1px;display:flex;position:relative}.content-card__header-accessory{justify-content:flex-start;align-items:flex-start;gap:calc(var(--spacing,.25rem)*2);flex-direction:column;flex-shrink:0;display:flex;overflow:clip}.content-card__heading-meta{align-items:center;gap:calc(var(--spacing,.25rem)*2);flex-shrink:0;display:flex}.content-card__badge{align-items:center;display:flex}.content-card__category{font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500);white-space:nowrap;color:var(--ee-blue-700)}.content-card__title{width:100%;max-width:250px;font-size:var(--text-2xl,1.5rem);line-height:var(--tw-leading,var(--text-2xl--line-height,calc(2/1.5)));--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600);--tw-tracking:calc(var(--tracking-normal) - .025em);letter-spacing:calc(var(--tracking-normal) - .025em);color:var(--foreground)}.content-card__content{flex-shrink:0;width:100%;position:relative;overflow:clip}.content-card__content-text{white-space:pre-wrap;color:var(--foreground)}.content-card__custom-content,.content-card__footer{flex-shrink:0;width:100%;position:relative;overflow:clip}@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-font-weight:initial}}}.kuat-header{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;width:100%;position:relative}.kuat-header--default{border-color:var(--border);background-color:var(--kuat-header-default-background);color:var(--kuat-header-default-foreground)}.kuat-header--bold{background-color:var(--kuat-header-bold-background);color:var(--kuat-header-bold-foreground);border-color:var(--kuat-header-bold-foreground-secondary)}@supports (color:color-mix(in lab,red,red)){.kuat-header--bold{border-color:color-mix(in srgb,var(--kuat-header-bold-foreground-secondary)20%,transparent)}}.kuat-header__desktop{display:none}@media (min-width:768px){.kuat-header__desktop{height:98px;padding-inline:calc(var(--spacing,.25rem)*6);justify-content:space-between;align-items:center;display:flex}}.kuat-header__desktop-left{align-items:center;gap:calc(var(--spacing,.25rem)*5);display:flex}.kuat-header__desktop-title{letter-spacing:-.025em;font-size:30px;font-weight:600;line-height:30px;font-family:var(--font-sans)}.kuat-header--default .kuat-header__desktop-title{color:var(--kuat-header-default-foreground)}.kuat-header--bold .kuat-header__desktop-title{color:var(--kuat-header-bold-foreground)}.kuat-header__desktop-right{align-items:center;gap:calc(var(--spacing,.25rem)*8);display:flex}.kuat-header__mobile{min-height:103px;padding-inline:calc(var(--spacing,.25rem)*3);padding-block:calc(var(--spacing,.25rem)*4);justify-content:space-between;align-items:flex-start;display:flex}@media (min-width:768px){.kuat-header__mobile{display:none}}.kuat-header__mobile-left{gap:calc(var(--spacing,.25rem)*2);flex-direction:column;display:flex}.kuat-header__mobile-title{font-size:var(--text-base,1rem);line-height:var(--tw-leading,var(--text-base--line-height, 1.5 ));--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600)}.kuat-header--default .kuat-header__mobile-title{color:var(--kuat-header-default-foreground-secondary)}.kuat-header--bold .kuat-header__mobile-title{color:var(--kuat-header-bold-foreground-secondary)}.kuat-header__separator{width:1px;height:49px}.kuat-header--default .kuat-header__separator{background-color:var(--border)}.kuat-header--bold .kuat-header__separator{background-color:var(--kuat-header-bold-foreground-secondary)}@supports (color:color-mix(in lab,red,red)){.kuat-header--bold .kuat-header__separator{background-color:color-mix(in srgb,var(--kuat-header-bold-foreground-secondary)30%,transparent)}}.ee-logo__text{fill:currentColor}.ee-logo--grey{color:gray}.ee-logo--white{color:#fff}.ee-logo--desktop{width:188px;height:50px}@media (min-width:768px){.ee-logo--desktop{width:188px;height:50px}}.ee-logo--mobile{width:147px;height:39px}.carousel{align-items:flex-end;gap:calc(var(--spacing,.25rem)*2);flex-direction:column;width:100%;display:flex;position:relative}.carousel__controls{align-items:center;gap:calc(var(--spacing,.25rem)*2);display:flex}.carousel__viewport{width:100%;overflow:hidden}.carousel__content{display:flex}.carousel__content--horizontal{margin-left:calc(var(--spacing,.25rem)*-4)}.carousel__content--vertical{margin-top:calc(var(--spacing,.25rem)*-4);flex-direction:column}.carousel__item{min-width:calc(var(--spacing,.25rem)*0);border-radius:calc(var(--radius) - 2px);flex-grow:0;flex-shrink:0;box-shadow:0 1px 2px #0000000d}.carousel__item--horizontal{padding-left:calc(var(--spacing,.25rem)*4)}.carousel__item--vertical{padding-top:calc(var(--spacing,.25rem)*4)}.carousel__item--basis-1{flex-basis:100%}.carousel__item--basis-2{flex-basis:50%}.carousel__item--basis-3{flex-basis:33.3333%}.carousel__prev,.carousel__next{width:calc(var(--spacing,.25rem)*6);height:calc(var(--spacing,.25rem)*6);border-radius:calc(var(--radius) - 4px);background-color:var(--primary);color:var(--primary-foreground);opacity:1;transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));transition-duration:.15s;transition-timing-function:default;justify-content:center;align-items:center;display:flex;box-shadow:0 1px 2px #0000000d}.carousel__prev:disabled,.carousel__next:disabled{pointer-events:none;opacity:.5}.carousel__prev:hover:not(:disabled),.carousel__next:hover:not(:disabled){background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){.carousel__prev:hover:not(:disabled),.carousel__next:hover:not(:disabled){background-color:color-mix(in srgb,var(--primary)90%,transparent)}}.carousel__prev svg,.carousel__next svg{width:calc(var(--spacing,.25rem)*3.5);height:calc(var(--spacing,.25rem)*3.5)}@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-leading:initial;--tw-font-weight:initial}}}.kuat-logo-lockup{container:logo-lockup/inline-size}.kuat-logo-lockup--light,.kuat-logo-lockup--light .kuat-logo-lockup__service-name,.kuat-logo-lockup--light .kuat-logo-lockup__demo-title,.kuat-logo-lockup--light .kuat-logo-lockup__demo-by{color:var(--kuat-header-default-foreground)}.kuat-logo-lockup--dark,.kuat-logo-lockup--dark .kuat-logo-lockup__service-name,.kuat-logo-lockup--dark .kuat-logo-lockup__demo-title,.kuat-logo-lockup--dark .kuat-logo-lockup__demo-by{color:var(--kuat-header-bold-foreground)}.kuat-logo-lockup--service .kuat-logo-lockup__service-inner{align-items:flex-start;gap:calc(2*var(--spacing));flex-direction:column;display:flex}.kuat-logo-lockup__separator{width:1px;height:calc(6*var(--spacing));flex-shrink:0;display:none}.kuat-logo-lockup--light .kuat-logo-lockup__separator{background-color:var(--border)}.kuat-logo-lockup--dark .kuat-logo-lockup__separator{background-color:var(--kuat-header-bold-foreground-secondary)}@supports (color:color-mix(in lab,red,red)){.kuat-logo-lockup--dark .kuat-logo-lockup__separator{background-color:color-mix(in srgb,var(--kuat-header-bold-foreground-secondary)30%,transparent)}}@container logo-lockup (min-width:320px){.kuat-logo-lockup--service .kuat-logo-lockup__service-inner{align-items:center;gap:calc(4*var(--spacing));flex-direction:row}.kuat-logo-lockup__separator{display:block}}@supports not (container-type:inline-size){@media (min-width:768px){.kuat-logo-lockup--service .kuat-logo-lockup__service-inner{align-items:center;gap:calc(4*var(--spacing));flex-direction:row}.kuat-logo-lockup__separator{display:block}}}.kuat-logo-lockup__service-name{letter-spacing:var(--tracking-tight);font-size:1.875rem;font-weight:600;line-height:1;font-family:var(--font-sans)}.kuat-logo-lockup__logo-wrap,.kuat-logo-lockup__logo-icon{flex-shrink:0}.kuat-logo-lockup__logo.kuat-logo-lockup__logo--demo{height:calc(6*var(--spacing));width:auto}.kuat-logo-lockup__logo:not(.kuat-logo-lockup__logo--demo){width:188px;height:50px}.kuat-logo-lockup__logo-icon{height:calc(10*var(--spacing));width:43px}.kuat-logo-lockup--demo .kuat-logo-lockup__demo-title{letter-spacing:var(--tracking-tight);font-size:1.875rem;font-weight:600;line-height:1.2;font-family:var(--font-sans);margin:0 0 calc(2*var(--spacing))0}.kuat-logo-lockup__demo-attribution{align-items:center;gap:calc(2*var(--spacing));display:flex}.kuat-logo-lockup__demo-by{font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-leading:calc(var(--spacing,.25rem)*4);line-height:calc(var(--spacing,.25rem)*4);--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500);letter-spacing:var(--tracking-normal);font-family:var(--font-sans)}.kuat-logo-lockup__demo-logo-wrap{align-items:center;display:flex}.kuat-logo-lockup__demo-logo-wrap .kuat-logo-lockup__logo{height:calc(5*var(--spacing));width:auto}.kuat-logo-lockup__demo-logo-wrap .kuat-logo-lockup__logo-icon{height:calc(5*var(--spacing));width:22px}.ee-logo-icon{color:var(--primary)}@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-outline-style:solid;--tw-font-weight:initial;--tw-border-style:solid;--tw-leading:initial}}}.breadcrumb-list{margin:calc(var(--spacing,.25rem)*0);align-items:center;gap:calc(var(--spacing,.25rem)*2);padding:calc(var(--spacing,.25rem)*0);flex-wrap:wrap;list-style-type:none;display:flex}.breadcrumb-item{align-items:center;gap:calc(var(--spacing,.25rem)*2);display:inline-flex}.breadcrumb-link{color:var(--foreground);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(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));text-decoration-line:none}.breadcrumb-link:hover{color:var(--foreground);text-decoration-line:underline}.breadcrumb-link:focus-visible{outline-style:var(--tw-outline-style);outline-offset:2px;outline-width:2px;outline-color:var(--ring);border-radius:.25rem}.breadcrumb-page{pointer-events:none;--tw-font-weight:var(--font-weight-medium,500);font-weight:var(--font-weight-medium,500);color:var(--muted-foreground)}.breadcrumb-separator{color:var(--muted-foreground);-webkit-user-select:none;user-select:none;display:inline-flex}.breadcrumb-separator__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4)}.breadcrumb-ellipsis{color:var(--muted-foreground);display:inline-flex}.breadcrumb-ellipsis__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4)}.breadcrumb-dropdown-trigger{cursor:pointer;border-style:var(--tw-border-style);padding:calc(var(--spacing,.25rem)*0);color:var(--foreground);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(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));font:inherit;background-color:#0000;border-width:0;text-decoration-line:none;display:flex}.breadcrumb-dropdown-trigger:hover{text-decoration-line:underline}.breadcrumb-dropdown-trigger:focus-visible{outline-style:var(--tw-outline-style);outline-offset:2px;outline-width:2px;outline-color:var(--ring);border-radius:.25rem}.breadcrumb-dropdown-trigger__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4);flex-shrink:0}.breadcrumb-ellipsis-trigger{padding:calc(var(--spacing,.25rem)*0);--tw-leading:1;line-height:1}.breadcrumb .sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial}}}.dropdown-menu-content{z-index:50;min-width:calc(var(--spacing,.25rem)*32);border-radius:calc(var(--radius) - 2px);border-style:var(--tw-border-style);border-width:1px;border-color:var(--border);background-color:var(--background);padding:calc(var(--spacing,.25rem)*1);overflow:hidden;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a}.dropdown-menu-content[data-state=open]{animation:.15s ease-out dropdown-menu-in}.dropdown-menu-content[data-state=closed]{animation:.15s ease-out dropdown-menu-out}@keyframes dropdown-menu-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes dropdown-menu-out{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.95)}}.dropdown-menu-item,.dropdown-menu-checkbox-item,.dropdown-menu-radio-item{cursor:default;padding-inline:calc(var(--spacing,.25rem)*2);padding-block:calc(var(--spacing,.25rem)*1.5);font-size:var(--text-sm,.875rem);line-height:var(--tw-leading,var(--text-sm--line-height,calc(1.25/.875)));--tw-leading:calc(var(--spacing,.25rem)*5);line-height:calc(var(--spacing,.25rem)*5);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(--default-transition-timing-function,cubic-bezier(.4,0,.2,1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));--tw-outline-style:none;-webkit-user-select:none;user-select:none;border-radius:.25rem;outline-style:none;align-items:center;display:flex;position:relative}.dropdown-menu-item[data-highlighted],.dropdown-menu-checkbox-item[data-highlighted],.dropdown-menu-radio-item[data-highlighted]{background-color:var(--accent);color:var(--accent-foreground)}.dropdown-menu-item[data-disabled],.dropdown-menu-checkbox-item[data-disabled],.dropdown-menu-radio-item[data-disabled]{pointer-events:none;opacity:.5}.dropdown-menu-item--inset,.dropdown-menu-checkbox-item--inset,.dropdown-menu-radio-item--inset{padding-left:calc(var(--spacing,.25rem)*8)}.dropdown-menu-label{padding-inline:calc(var(--spacing,.25rem)*2);padding-block:calc(var(--spacing,.25rem)*1.5);font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-font-weight:var(--font-weight-semibold,600);font-weight:var(--font-weight-semibold,600);color:var(--muted-foreground)}.dropdown-menu-label--inset{padding-left:calc(var(--spacing,.25rem)*8)}.dropdown-menu-separator{margin-inline:calc(var(--spacing,.25rem)*-1);margin-block:calc(var(--spacing,.25rem)*1);background-color:var(--border);height:1px}.dropdown-menu-shortcut{font-size:var(--text-xs,.75rem);line-height:var(--tw-leading,var(--text-xs--line-height,calc(1/.75)));--tw-tracking:calc(var(--tracking-normal) + .05em);letter-spacing:calc(var(--tracking-normal) + .05em);color:var(--muted-foreground);margin-left:auto}.dropdown-menu-sub-trigger{cursor:default;padding-inline:calc(var(--spacing,.25rem)*2);padding-block:calc(var(--spacing,.25rem)*1.5);font-size:var(--text-sm,.875rem);line-height:var(--tw-leading,var(--text-sm--line-height,calc(1.25/.875)));--tw-outline-style:none;-webkit-user-select:none;user-select:none;border-radius:.25rem;outline-style:none;align-items:center;display:flex}.dropdown-menu-sub-trigger[data-highlighted]{background-color:var(--accent);color:var(--accent-foreground)}.dropdown-menu-sub-trigger__icon{width:calc(var(--spacing,.25rem)*4);height:calc(var(--spacing,.25rem)*4);margin-left:auto}.dropdown-menu-sub-content{min-width:calc(var(--spacing,.25rem)*32)}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}
|
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,8 @@ export { ContentCard } from './components/ui/content-card';
|
|
|
18
18
|
export type { ContentCardProps } from './components/ui/content-card';
|
|
19
19
|
export { KuatHeader, kuatHeaderVariants, EELogo } from './components/ui/kuat-header';
|
|
20
20
|
export type { KuatHeaderProps, EELogoProps } from './components/ui/kuat-header';
|
|
21
|
+
export { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, useCarousel, } from './components/ui/carousel';
|
|
22
|
+
export type { CarouselItemBasis, CarouselEventHandler, CarouselEventHandlers, CarouselProps, CarouselContentProps, CarouselItemProps, } from './components/ui/carousel';
|
|
21
23
|
export { KuatCarousel, KuatCarouselContent, KuatCarouselItem, KuatCarouselPrevious, KuatCarouselNext, useKuatCarousel, } from './components/ui/kuat-carousel';
|
|
22
24
|
export type { KuatCarouselSlidesPerView, KuatCarouselProps, KuatCarouselContentProps, KuatCarouselItemProps, } from './components/ui/kuat-carousel';
|
|
23
25
|
export { KuatRadialProgress, KUAT_RADIAL_PROGRESS_SIZES, KUAT_RADIAL_PROGRESS_COLORS, } from './components/ui/kuat-radial-progress';
|
|
@@ -50,3 +52,5 @@ export { Switch, SwitchField, SWITCH_FIELD_APPEARANCES, SWITCH_FIELD_LAYOUTS, }
|
|
|
50
52
|
export type { SwitchProps, SwitchFieldAppearance, SwitchFieldLayout, SwitchFieldProps, } from './components/ui/switch';
|
|
51
53
|
export { Toggle, ToggleGroup, ToggleGroupItem, TOGGLE_SIZES, TOGGLE_SKINS, } from './components/ui/toggle';
|
|
52
54
|
export type { ToggleProps, ToggleGroupProps, ToggleGroupItemProps, ToggleSize, ToggleSkin, } from './components/ui/toggle';
|
|
55
|
+
export { Sonner, SonnerContent, SONNER_POSITIONS, toast } from './components/ui/sonner';
|
|
56
|
+
export type { SonnerAnnouncement, SonnerContentAction, SonnerContentProps, SonnerPosition, SonnerProps, SonnerToastOptions, } from './components/ui/sonner';
|