@gradeui/ui 4.0.0 → 4.0.1
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/index.d.mts +77 -7
- package/dist/index.d.ts +77 -7
- package/dist/index.js +79 -79
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +79 -79
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/styles/globals.css +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -443,7 +443,7 @@ declare const CalloutDescription: React.ForwardRefExoticComponent<React.HTMLAttr
|
|
|
443
443
|
declare const shellVariants: (props?: ({
|
|
444
444
|
nav?: "none" | "top" | "side" | "three-pane" | null | undefined;
|
|
445
445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
446
|
-
declare const headerVariants: (props?: ({
|
|
446
|
+
declare const headerVariants$1: (props?: ({
|
|
447
447
|
sticky?: boolean | null | undefined;
|
|
448
448
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
449
449
|
declare const navVariants: (props?: ({
|
|
@@ -463,7 +463,7 @@ interface AppShellProps extends React.HTMLAttributes<HTMLDivElement>, VariantPro
|
|
|
463
463
|
asChild?: boolean;
|
|
464
464
|
}
|
|
465
465
|
declare const AppShell: React.ForwardRefExoticComponent<AppShellProps & React.RefAttributes<HTMLDivElement>>;
|
|
466
|
-
interface AppShellHeaderProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof headerVariants> {
|
|
466
|
+
interface AppShellHeaderProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof headerVariants$1> {
|
|
467
467
|
asChild?: boolean;
|
|
468
468
|
}
|
|
469
469
|
declare const AppShellHeader: React.ForwardRefExoticComponent<AppShellHeaderProps & React.RefAttributes<HTMLElement>>;
|
|
@@ -676,7 +676,7 @@ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAtt
|
|
|
676
676
|
* Title / Subtitle / Description / Actions / Media) give the common shape
|
|
677
677
|
* design intent without constraining it.
|
|
678
678
|
*/
|
|
679
|
-
type SectionScope = "default" | "inverse" | "brand" | "accent" | "muted" | "card";
|
|
679
|
+
type SectionScope$1 = "default" | "inverse" | "brand" | "accent" | "muted" | "card";
|
|
680
680
|
type ContainerMaxW = "sm" | "md" | "lg" | "xl" | "prose" | "full";
|
|
681
681
|
declare const bandVariants: (props?: ({
|
|
682
682
|
pad?: "none" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
@@ -684,7 +684,7 @@ declare const bandVariants: (props?: ({
|
|
|
684
684
|
interface SectionProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof bandVariants> {
|
|
685
685
|
/** Colour subtheme — applies the `scope-*` class (STUDIO-COLOR.md). Unset =
|
|
686
686
|
* the page surface (transparent). */
|
|
687
|
-
scope?: SectionScope;
|
|
687
|
+
scope?: SectionScope$1;
|
|
688
688
|
/** Visual band background — image / video / gradient / shader (e.g.
|
|
689
689
|
* `<BackgroundFill>`). Renders BEHIND the content; Section owns the
|
|
690
690
|
* relative + overflow-hidden + z-layering. Works with `scope`, which
|
|
@@ -694,11 +694,11 @@ interface SectionProps extends React.HTMLAttributes<HTMLElement>, VariantProps<t
|
|
|
694
694
|
as?: "section" | "header" | "footer" | "div";
|
|
695
695
|
}
|
|
696
696
|
declare const Section: React.ForwardRefExoticComponent<SectionProps & React.RefAttributes<HTMLElement>>;
|
|
697
|
-
declare const containerVariants: (props?: ({
|
|
697
|
+
declare const containerVariants$1: (props?: ({
|
|
698
698
|
maxW?: "sm" | "md" | "lg" | "xl" | "full" | "prose" | null | undefined;
|
|
699
699
|
grid?: boolean | null | undefined;
|
|
700
700
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
701
|
-
interface ContainerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof containerVariants> {
|
|
701
|
+
interface ContainerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof containerVariants$1> {
|
|
702
702
|
as?: "div" | "section";
|
|
703
703
|
}
|
|
704
704
|
declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -712,6 +712,66 @@ declare const SectionActions: React.ForwardRefExoticComponent<React.HTMLAttribut
|
|
|
712
712
|
* doesn't care what's inside; the media frames itself. */
|
|
713
713
|
declare const SectionMedia: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
714
714
|
|
|
715
|
+
/** Named colour SCOPES (STUDIO-COLOR.md). A `scope` makes the section a local
|
|
716
|
+
* colour mode — like light/dark, but scoped to this element and focused on
|
|
717
|
+
* surfaces. It applies the matching `scope-*` class, which re-points the
|
|
718
|
+
* surface tokens (--background / --card / --muted / --foreground / --border)
|
|
719
|
+
* at the named pair, so every descendant re-tones while still using the
|
|
720
|
+
* ordinary tokens. `inverse` is the dark-band / light-text marketing scope. */
|
|
721
|
+
declare const SECTION_SCOPES: readonly ["default", "inverse", "brand", "accent", "muted", "card"];
|
|
722
|
+
type SectionScope = (typeof SECTION_SCOPES)[number];
|
|
723
|
+
declare const sectionBlockVariants: (props?: ({
|
|
724
|
+
padding?: "none" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
725
|
+
background?: "muted" | "primary" | "gradient" | "card" | "transparent" | "scoped" | null | undefined;
|
|
726
|
+
fullBleed?: boolean | null | undefined;
|
|
727
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
728
|
+
declare const containerVariants: (props?: ({
|
|
729
|
+
container?: "default" | "full" | "wide" | "narrow" | null | undefined;
|
|
730
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
731
|
+
declare const headerVariants: (props?: ({
|
|
732
|
+
alignment?: "center" | "right" | "left" | null | undefined;
|
|
733
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
734
|
+
declare const titleVariants: (props?: ({
|
|
735
|
+
titleSize?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
736
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
737
|
+
type ButtonVariant = VariantProps<typeof buttonVariants>["variant"];
|
|
738
|
+
interface CTAConfig {
|
|
739
|
+
text: string;
|
|
740
|
+
variant?: ButtonVariant;
|
|
741
|
+
href?: string;
|
|
742
|
+
onClick?: () => void;
|
|
743
|
+
}
|
|
744
|
+
interface SectionBlockProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof sectionBlockVariants>, VariantProps<typeof containerVariants>, VariantProps<typeof headerVariants>, VariantProps<typeof titleVariants> {
|
|
745
|
+
/**
|
|
746
|
+
* What the section surface is *made of*. Orthogonal to `background`
|
|
747
|
+
* (which picks the tonal direction): `surface` picks the material
|
|
748
|
+
* applied on top.
|
|
749
|
+
*
|
|
750
|
+
* - `solid` (default): the `background` tint is opaque.
|
|
751
|
+
* - `translucent`: ~82% opacity, no blur — picks up the page underneath.
|
|
752
|
+
* - `glass`: ~58% opacity + 14px blur + edge highlight. Sections that
|
|
753
|
+
* sit over a hero image / generative backdrop and need to read as
|
|
754
|
+
* floating chrome.
|
|
755
|
+
* - `glass-strong`: 42% + 24px blur — for full-page-overlay sections.
|
|
756
|
+
*
|
|
757
|
+
* When `surface !== "solid"`, the `background` Tailwind classes still
|
|
758
|
+
* apply but get overlaid with the glass class so the alpha shows
|
|
759
|
+
* through the tint.
|
|
760
|
+
*/
|
|
761
|
+
surface?: Surface;
|
|
762
|
+
/** Make the section a named colour scope (a local surface mode): applies the
|
|
763
|
+
* `scope-*` class so the whole subtree re-tones. Overrides `background`. */
|
|
764
|
+
scope?: SectionScope;
|
|
765
|
+
title?: string;
|
|
766
|
+
subtitle?: string;
|
|
767
|
+
cta1?: string | CTAConfig;
|
|
768
|
+
cta2?: string | CTAConfig;
|
|
769
|
+
backgroundImage?: string;
|
|
770
|
+
children?: React.ReactNode;
|
|
771
|
+
as?: "section" | "div" | "article";
|
|
772
|
+
}
|
|
773
|
+
declare const SectionBlock: React.ForwardRefExoticComponent<SectionBlockProps & React.RefAttributes<HTMLElement>>;
|
|
774
|
+
|
|
715
775
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React.ComponentProps<typeof DayPicker> & {
|
|
716
776
|
buttonVariant?: React.ComponentProps<typeof Button>["variant"];
|
|
717
777
|
}): React.JSX.Element;
|
|
@@ -4921,6 +4981,16 @@ interface GeneratedTheme {
|
|
|
4921
4981
|
info: Ramp;
|
|
4922
4982
|
highlight: Ramp;
|
|
4923
4983
|
destructive: Ramp;
|
|
4984
|
+
/**
|
|
4985
|
+
* Expressive accent ramps — default = the primary hue rotated +60°·k in
|
|
4986
|
+
* OKLCH (k = 1..5). Optional so partially-constructed themes stay valid;
|
|
4987
|
+
* generator output always includes them. Emitted as `--gds-accent{1..5}-<step>`.
|
|
4988
|
+
*/
|
|
4989
|
+
accent1?: Ramp;
|
|
4990
|
+
accent2?: Ramp;
|
|
4991
|
+
accent3?: Ramp;
|
|
4992
|
+
accent4?: Ramp;
|
|
4993
|
+
accent5?: Ramp;
|
|
4924
4994
|
};
|
|
4925
4995
|
/** Semantic tokens for all four modes. */
|
|
4926
4996
|
colors: Record<ModeName, GeneratedColorsMode>;
|
|
@@ -5116,4 +5186,4 @@ declare function GradeModeSwitcher({ className, variant }: GradeModeSwitcherProp
|
|
|
5116
5186
|
*/
|
|
5117
5187
|
declare function ThemeToggle(): React.JSX.Element;
|
|
5118
5188
|
|
|
5119
|
-
export { ALL_MODES, Accordion, AccordionContent, AccordionItem, AccordionTrigger, AppShell, AppShellAside, type AppShellAsideProps, AppShellFooter, type AppShellFooterProps, AppShellHeader, type AppShellHeaderProps, AppShellMain, type AppShellMainProps, AppShellNav, type AppShellNavProps, type AppShellProps, Avatar, AvatarFallback, AvatarImage, type AvatarTone, BUILT_IN_INPUTS, BackgroundFill, type BackgroundFillFit, type BackgroundFillProps, type BackgroundFillType, Badge, Banner, type BannerProps, type BaseMediaProps, BlinkingCursor, type BlinkingCursorProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, type BreadcrumbMenuItem, BreadcrumbMenuTrigger, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonShape, TRANSPARENT as COLOR_PICKER_TRANSPARENT, COMPONENT_CONTRACTS, Calendar, CalendarDayButton, Callout, CalloutDescription, CalloutTitle, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardStyle, CardTitle, Carousel, CarouselArrows, type CarouselArrowsProps, type AutoplayConfig as CarouselAutoplayConfig, CarouselDots, type CarouselDotsProps, type CarouselNavButtonProps, CarouselNext, CarouselPrev, type CarouselProps, CarouselSlide, type CarouselSlideProps, CarouselVideoSlide, type CarouselVideoSlideProps, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartPalette, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxCard, type CheckboxCardProps, Code, type CodeDiff, type CodeLanguage, type CodeProps, type CodeReveal, type CodeTrigger, type ColorIntensity, ColorPicker, type ColorPickerProps, type ColorTokenGroup, Combobox, type ComboboxOption, type ComboboxProps, Container, type ContainerMaxW, type ContainerProps, DEFAULT_COLOR_TOKEN_GROUPS, DEMO_SPEED_PRESETS, DataView, type DataViewBadgeOption, type DataViewCellType, type DataViewColumn, DataViewColumns, type DataViewColumnsProps, type DataViewMode, type DataViewProps, type DataViewState, DataViewToggle, type DataViewToggleProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DemoSpeed, DemoStage, type DemoStageProps, DemoTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FILL_TOKENS, FRAGMENT_HEADER, Field, FieldDescription, FieldLabel, type FieldProps, FieldTrailing, FillPicker, type FillPickerProps, FillSection, type FillSectionProps, type FillValue, Flex, type FlexProps, type FontKey, GRADE_PRE_HYDRATION_SCRIPT, type GeneratedTheme, GradeLoader, type GradeLoaderProps, type GradeLoaderSize, GradeModeSwitcher, GradeThemeProvider, type GradeThemeProviderProps, GradeThemeSwitcher, GradientEditor, type GradientEditorProps, type GradientStop, type GradientType, type GradientValue, Grid, type GridProps, Input, type InputStyle, Label, LenisProvider, Logo, type LogoLockup, type LogoMode, type LogoProps, type LogoSize, type LogoSources, type LogoVariant, MOTION_ATTR, Map, MapHandle, MapMarker, MapMarkerProps, MapProps, type MediaAspect, type MediaRadius, MediaSurface, MediaSurfaceContract, type MediaSurfaceProps, Message, type MessageProps, type ModeName, Motion, MotionOverlay, type MotionOverlayProps, type MotionOverlayZone, type MotionProps, MotionScene, type MotionSceneProps, type MotionSceneRegistration, type MotionSceneTransition, MotionScreen, type MotionScreenAnimate, type MotionScreenProps, MotionText, type MotionTextProps, type MotionTextTemplate, MultiSelect, type MultiSelectOption, type MultiSelectProps, type OKLCHTriplet, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PostPreset, Progress, PropertyList, type PropertyListProps, PropertyListRow, type PropertyListRowProps, RadioCard, type RadioCardProps, RadioGroup, RadioGroupItem, type RadiusStyle, type Ramp, ResizableHandle, ResizablePanel, ResizablePanelGroup, Reveal, type RevealAnimation, type RevealProps, type RevealStep, RivePlayer, type RivePlayerProps, Row, type RowProps, type SceneContext, type SceneFactory, type SceneHandle, ScreenAnimator, type ScreenAnimatorProps, type ScreenAnimatorShot, type ScriptedDemoContext, type ScriptedDemoState, ScrollArea, ScrollBar, Section, SectionActions, SectionDescription, SectionEyebrow, SectionMedia, type SectionProps, type SectionScope, SectionSubtitle, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ShaderCompileError, ShaderControls, type ShaderControlsProps, type ShaderPreset, ShaderPresetPicker, type ShaderPresetPickerProps, ShaderPresetPreview, type ShaderPresetPreviewProps, type ShadowIntensity, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SidebarTreeItem, type SidebarTreeItemProps, Skeleton, Slider, Sortable, SortableGroup, type SortableGroupProps, SortableHandle, type SortableHandleProps, SortableItem, type SortableItemProps, type SortableProps, type SpacingDensity, Stack, type StackProps, Swatch, SwatchGroup, type SwatchGroupProps, type SwatchProps, Switch, SwitchCard, type SwitchCardProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type ThemeInput, ThemeToggle, ThreeScene, type ThreeSceneProps, Toggle, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, ToolbarSlot, type ToolbarSlotProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TypeScalePreset, type UseDataViewOptions, type UseScriptedDemoOptions, VideoPlayer, type VideoPlayerProps, asideVariants as appShellAsideVariants, footerVariants as appShellFooterVariants, headerVariants as appShellHeaderVariants, mainVariants as appShellMainVariants, navVariants as appShellNavVariants, applyThemeToRoot, badgeVariants, bannerVariants, buildFragmentShaderScene, builtInThemes, buttonVariants, calloutVariants, calmInput, cn, containerVariants, defaultPostPreset, defaultThemeId, deleteUserTheme, sleep as demoSleep, typeText as demoTypeText, duplicateTheme, energyInput, flexVariants, generateTheme, getComponentContract, getTheme, gradientToCss, gridVariants, listContractedComponents, listThemes, listUserThemes, loadUserThemeInput, postPresets, rowVariants, saveUserTheme, sceneRegistry, bandVariants as sectionBandVariants, setMotion, shaderPresetById, shaderPresets, shellVariants, stackVariants, swatchVariants, themeToCSSVars, toggleVariants, useCarouselApi, useDataView, useGradeTheme, useMaybeGradeTheme, useMotionScene, usePageActive, usePrefersReducedMotion, useReducedMotion, useScriptedDemo };
|
|
5189
|
+
export { ALL_MODES, Accordion, AccordionContent, AccordionItem, AccordionTrigger, AppShell, AppShellAside, type AppShellAsideProps, AppShellFooter, type AppShellFooterProps, AppShellHeader, type AppShellHeaderProps, AppShellMain, type AppShellMainProps, AppShellNav, type AppShellNavProps, type AppShellProps, Avatar, AvatarFallback, AvatarImage, type AvatarTone, BUILT_IN_INPUTS, BackgroundFill, type BackgroundFillFit, type BackgroundFillProps, type BackgroundFillType, Badge, Banner, type BannerProps, type BaseMediaProps, BlinkingCursor, type BlinkingCursorProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, type BreadcrumbMenuItem, BreadcrumbMenuTrigger, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonShape, TRANSPARENT as COLOR_PICKER_TRANSPARENT, COMPONENT_CONTRACTS, Calendar, CalendarDayButton, Callout, CalloutDescription, CalloutTitle, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardStyle, CardTitle, Carousel, CarouselArrows, type CarouselArrowsProps, type AutoplayConfig as CarouselAutoplayConfig, CarouselDots, type CarouselDotsProps, type CarouselNavButtonProps, CarouselNext, CarouselPrev, type CarouselProps, CarouselSlide, type CarouselSlideProps, CarouselVideoSlide, type CarouselVideoSlideProps, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartPalette, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxCard, type CheckboxCardProps, Code, type CodeDiff, type CodeLanguage, type CodeProps, type CodeReveal, type CodeTrigger, type ColorIntensity, ColorPicker, type ColorPickerProps, type ColorTokenGroup, Combobox, type ComboboxOption, type ComboboxProps, Container, type ContainerMaxW, type ContainerProps, DEFAULT_COLOR_TOKEN_GROUPS, DEMO_SPEED_PRESETS, DataView, type DataViewBadgeOption, type DataViewCellType, type DataViewColumn, DataViewColumns, type DataViewColumnsProps, type DataViewMode, type DataViewProps, type DataViewState, DataViewToggle, type DataViewToggleProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DemoSpeed, DemoStage, type DemoStageProps, DemoTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FILL_TOKENS, FRAGMENT_HEADER, Field, FieldDescription, FieldLabel, type FieldProps, FieldTrailing, FillPicker, type FillPickerProps, FillSection, type FillSectionProps, type FillValue, Flex, type FlexProps, type FontKey, GRADE_PRE_HYDRATION_SCRIPT, type GeneratedTheme, GradeLoader, type GradeLoaderProps, type GradeLoaderSize, GradeModeSwitcher, GradeThemeProvider, type GradeThemeProviderProps, GradeThemeSwitcher, GradientEditor, type GradientEditorProps, type GradientStop, type GradientType, type GradientValue, Grid, type GridProps, Input, type InputStyle, Label, LenisProvider, Logo, type LogoLockup, type LogoMode, type LogoProps, type LogoSize, type LogoSources, type LogoVariant, MOTION_ATTR, Map, MapHandle, MapMarker, MapMarkerProps, MapProps, type MediaAspect, type MediaRadius, MediaSurface, MediaSurfaceContract, type MediaSurfaceProps, Message, type MessageProps, type ModeName, Motion, MotionOverlay, type MotionOverlayProps, type MotionOverlayZone, type MotionProps, MotionScene, type MotionSceneProps, type MotionSceneRegistration, type MotionSceneTransition, MotionScreen, type MotionScreenAnimate, type MotionScreenProps, MotionText, type MotionTextProps, type MotionTextTemplate, MultiSelect, type MultiSelectOption, type MultiSelectProps, type OKLCHTriplet, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PostPreset, Progress, PropertyList, type PropertyListProps, PropertyListRow, type PropertyListRowProps, RadioCard, type RadioCardProps, RadioGroup, RadioGroupItem, type RadiusStyle, type Ramp, ResizableHandle, ResizablePanel, ResizablePanelGroup, Reveal, type RevealAnimation, type RevealProps, type RevealStep, RivePlayer, type RivePlayerProps, Row, type RowProps, type SceneContext, type SceneFactory, type SceneHandle, ScreenAnimator, type ScreenAnimatorProps, type ScreenAnimatorShot, type ScriptedDemoContext, type ScriptedDemoState, ScrollArea, ScrollBar, Section, SectionActions, SectionBlock, type SectionBlockProps, SectionDescription, SectionEyebrow, SectionMedia, type SectionProps, type SectionScope$1 as SectionScope, SectionSubtitle, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ShaderCompileError, ShaderControls, type ShaderControlsProps, type ShaderPreset, ShaderPresetPicker, type ShaderPresetPickerProps, ShaderPresetPreview, type ShaderPresetPreviewProps, type ShadowIntensity, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SidebarTreeItem, type SidebarTreeItemProps, Skeleton, Slider, Sortable, SortableGroup, type SortableGroupProps, SortableHandle, type SortableHandleProps, SortableItem, type SortableItemProps, type SortableProps, type SpacingDensity, Stack, type StackProps, Swatch, SwatchGroup, type SwatchGroupProps, type SwatchProps, Switch, SwitchCard, type SwitchCardProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type ThemeInput, ThemeToggle, ThreeScene, type ThreeSceneProps, Toggle, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, ToolbarSlot, type ToolbarSlotProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TypeScalePreset, type UseDataViewOptions, type UseScriptedDemoOptions, VideoPlayer, type VideoPlayerProps, asideVariants as appShellAsideVariants, footerVariants as appShellFooterVariants, headerVariants$1 as appShellHeaderVariants, mainVariants as appShellMainVariants, navVariants as appShellNavVariants, applyThemeToRoot, badgeVariants, bannerVariants, buildFragmentShaderScene, builtInThemes, buttonVariants, calloutVariants, calmInput, cn, containerVariants$1 as containerVariants, defaultPostPreset, defaultThemeId, deleteUserTheme, sleep as demoSleep, typeText as demoTypeText, duplicateTheme, energyInput, flexVariants, generateTheme, getComponentContract, getTheme, gradientToCss, gridVariants, listContractedComponents, listThemes, listUserThemes, loadUserThemeInput, postPresets, rowVariants, saveUserTheme, sceneRegistry, bandVariants as sectionBandVariants, sectionBlockVariants, setMotion, shaderPresetById, shaderPresets, shellVariants, stackVariants, swatchVariants, themeToCSSVars, toggleVariants, useCarouselApi, useDataView, useGradeTheme, useMaybeGradeTheme, useMotionScene, usePageActive, usePrefersReducedMotion, useReducedMotion, useScriptedDemo };
|
package/dist/index.d.ts
CHANGED
|
@@ -443,7 +443,7 @@ declare const CalloutDescription: React.ForwardRefExoticComponent<React.HTMLAttr
|
|
|
443
443
|
declare const shellVariants: (props?: ({
|
|
444
444
|
nav?: "none" | "top" | "side" | "three-pane" | null | undefined;
|
|
445
445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
446
|
-
declare const headerVariants: (props?: ({
|
|
446
|
+
declare const headerVariants$1: (props?: ({
|
|
447
447
|
sticky?: boolean | null | undefined;
|
|
448
448
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
449
449
|
declare const navVariants: (props?: ({
|
|
@@ -463,7 +463,7 @@ interface AppShellProps extends React.HTMLAttributes<HTMLDivElement>, VariantPro
|
|
|
463
463
|
asChild?: boolean;
|
|
464
464
|
}
|
|
465
465
|
declare const AppShell: React.ForwardRefExoticComponent<AppShellProps & React.RefAttributes<HTMLDivElement>>;
|
|
466
|
-
interface AppShellHeaderProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof headerVariants> {
|
|
466
|
+
interface AppShellHeaderProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof headerVariants$1> {
|
|
467
467
|
asChild?: boolean;
|
|
468
468
|
}
|
|
469
469
|
declare const AppShellHeader: React.ForwardRefExoticComponent<AppShellHeaderProps & React.RefAttributes<HTMLElement>>;
|
|
@@ -676,7 +676,7 @@ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAtt
|
|
|
676
676
|
* Title / Subtitle / Description / Actions / Media) give the common shape
|
|
677
677
|
* design intent without constraining it.
|
|
678
678
|
*/
|
|
679
|
-
type SectionScope = "default" | "inverse" | "brand" | "accent" | "muted" | "card";
|
|
679
|
+
type SectionScope$1 = "default" | "inverse" | "brand" | "accent" | "muted" | "card";
|
|
680
680
|
type ContainerMaxW = "sm" | "md" | "lg" | "xl" | "prose" | "full";
|
|
681
681
|
declare const bandVariants: (props?: ({
|
|
682
682
|
pad?: "none" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
@@ -684,7 +684,7 @@ declare const bandVariants: (props?: ({
|
|
|
684
684
|
interface SectionProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof bandVariants> {
|
|
685
685
|
/** Colour subtheme — applies the `scope-*` class (STUDIO-COLOR.md). Unset =
|
|
686
686
|
* the page surface (transparent). */
|
|
687
|
-
scope?: SectionScope;
|
|
687
|
+
scope?: SectionScope$1;
|
|
688
688
|
/** Visual band background — image / video / gradient / shader (e.g.
|
|
689
689
|
* `<BackgroundFill>`). Renders BEHIND the content; Section owns the
|
|
690
690
|
* relative + overflow-hidden + z-layering. Works with `scope`, which
|
|
@@ -694,11 +694,11 @@ interface SectionProps extends React.HTMLAttributes<HTMLElement>, VariantProps<t
|
|
|
694
694
|
as?: "section" | "header" | "footer" | "div";
|
|
695
695
|
}
|
|
696
696
|
declare const Section: React.ForwardRefExoticComponent<SectionProps & React.RefAttributes<HTMLElement>>;
|
|
697
|
-
declare const containerVariants: (props?: ({
|
|
697
|
+
declare const containerVariants$1: (props?: ({
|
|
698
698
|
maxW?: "sm" | "md" | "lg" | "xl" | "full" | "prose" | null | undefined;
|
|
699
699
|
grid?: boolean | null | undefined;
|
|
700
700
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
701
|
-
interface ContainerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof containerVariants> {
|
|
701
|
+
interface ContainerProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof containerVariants$1> {
|
|
702
702
|
as?: "div" | "section";
|
|
703
703
|
}
|
|
704
704
|
declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -712,6 +712,66 @@ declare const SectionActions: React.ForwardRefExoticComponent<React.HTMLAttribut
|
|
|
712
712
|
* doesn't care what's inside; the media frames itself. */
|
|
713
713
|
declare const SectionMedia: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
714
714
|
|
|
715
|
+
/** Named colour SCOPES (STUDIO-COLOR.md). A `scope` makes the section a local
|
|
716
|
+
* colour mode — like light/dark, but scoped to this element and focused on
|
|
717
|
+
* surfaces. It applies the matching `scope-*` class, which re-points the
|
|
718
|
+
* surface tokens (--background / --card / --muted / --foreground / --border)
|
|
719
|
+
* at the named pair, so every descendant re-tones while still using the
|
|
720
|
+
* ordinary tokens. `inverse` is the dark-band / light-text marketing scope. */
|
|
721
|
+
declare const SECTION_SCOPES: readonly ["default", "inverse", "brand", "accent", "muted", "card"];
|
|
722
|
+
type SectionScope = (typeof SECTION_SCOPES)[number];
|
|
723
|
+
declare const sectionBlockVariants: (props?: ({
|
|
724
|
+
padding?: "none" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
725
|
+
background?: "muted" | "primary" | "gradient" | "card" | "transparent" | "scoped" | null | undefined;
|
|
726
|
+
fullBleed?: boolean | null | undefined;
|
|
727
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
728
|
+
declare const containerVariants: (props?: ({
|
|
729
|
+
container?: "default" | "full" | "wide" | "narrow" | null | undefined;
|
|
730
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
731
|
+
declare const headerVariants: (props?: ({
|
|
732
|
+
alignment?: "center" | "right" | "left" | null | undefined;
|
|
733
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
734
|
+
declare const titleVariants: (props?: ({
|
|
735
|
+
titleSize?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
736
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
737
|
+
type ButtonVariant = VariantProps<typeof buttonVariants>["variant"];
|
|
738
|
+
interface CTAConfig {
|
|
739
|
+
text: string;
|
|
740
|
+
variant?: ButtonVariant;
|
|
741
|
+
href?: string;
|
|
742
|
+
onClick?: () => void;
|
|
743
|
+
}
|
|
744
|
+
interface SectionBlockProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof sectionBlockVariants>, VariantProps<typeof containerVariants>, VariantProps<typeof headerVariants>, VariantProps<typeof titleVariants> {
|
|
745
|
+
/**
|
|
746
|
+
* What the section surface is *made of*. Orthogonal to `background`
|
|
747
|
+
* (which picks the tonal direction): `surface` picks the material
|
|
748
|
+
* applied on top.
|
|
749
|
+
*
|
|
750
|
+
* - `solid` (default): the `background` tint is opaque.
|
|
751
|
+
* - `translucent`: ~82% opacity, no blur — picks up the page underneath.
|
|
752
|
+
* - `glass`: ~58% opacity + 14px blur + edge highlight. Sections that
|
|
753
|
+
* sit over a hero image / generative backdrop and need to read as
|
|
754
|
+
* floating chrome.
|
|
755
|
+
* - `glass-strong`: 42% + 24px blur — for full-page-overlay sections.
|
|
756
|
+
*
|
|
757
|
+
* When `surface !== "solid"`, the `background` Tailwind classes still
|
|
758
|
+
* apply but get overlaid with the glass class so the alpha shows
|
|
759
|
+
* through the tint.
|
|
760
|
+
*/
|
|
761
|
+
surface?: Surface;
|
|
762
|
+
/** Make the section a named colour scope (a local surface mode): applies the
|
|
763
|
+
* `scope-*` class so the whole subtree re-tones. Overrides `background`. */
|
|
764
|
+
scope?: SectionScope;
|
|
765
|
+
title?: string;
|
|
766
|
+
subtitle?: string;
|
|
767
|
+
cta1?: string | CTAConfig;
|
|
768
|
+
cta2?: string | CTAConfig;
|
|
769
|
+
backgroundImage?: string;
|
|
770
|
+
children?: React.ReactNode;
|
|
771
|
+
as?: "section" | "div" | "article";
|
|
772
|
+
}
|
|
773
|
+
declare const SectionBlock: React.ForwardRefExoticComponent<SectionBlockProps & React.RefAttributes<HTMLElement>>;
|
|
774
|
+
|
|
715
775
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React.ComponentProps<typeof DayPicker> & {
|
|
716
776
|
buttonVariant?: React.ComponentProps<typeof Button>["variant"];
|
|
717
777
|
}): React.JSX.Element;
|
|
@@ -4921,6 +4981,16 @@ interface GeneratedTheme {
|
|
|
4921
4981
|
info: Ramp;
|
|
4922
4982
|
highlight: Ramp;
|
|
4923
4983
|
destructive: Ramp;
|
|
4984
|
+
/**
|
|
4985
|
+
* Expressive accent ramps — default = the primary hue rotated +60°·k in
|
|
4986
|
+
* OKLCH (k = 1..5). Optional so partially-constructed themes stay valid;
|
|
4987
|
+
* generator output always includes them. Emitted as `--gds-accent{1..5}-<step>`.
|
|
4988
|
+
*/
|
|
4989
|
+
accent1?: Ramp;
|
|
4990
|
+
accent2?: Ramp;
|
|
4991
|
+
accent3?: Ramp;
|
|
4992
|
+
accent4?: Ramp;
|
|
4993
|
+
accent5?: Ramp;
|
|
4924
4994
|
};
|
|
4925
4995
|
/** Semantic tokens for all four modes. */
|
|
4926
4996
|
colors: Record<ModeName, GeneratedColorsMode>;
|
|
@@ -5116,4 +5186,4 @@ declare function GradeModeSwitcher({ className, variant }: GradeModeSwitcherProp
|
|
|
5116
5186
|
*/
|
|
5117
5187
|
declare function ThemeToggle(): React.JSX.Element;
|
|
5118
5188
|
|
|
5119
|
-
export { ALL_MODES, Accordion, AccordionContent, AccordionItem, AccordionTrigger, AppShell, AppShellAside, type AppShellAsideProps, AppShellFooter, type AppShellFooterProps, AppShellHeader, type AppShellHeaderProps, AppShellMain, type AppShellMainProps, AppShellNav, type AppShellNavProps, type AppShellProps, Avatar, AvatarFallback, AvatarImage, type AvatarTone, BUILT_IN_INPUTS, BackgroundFill, type BackgroundFillFit, type BackgroundFillProps, type BackgroundFillType, Badge, Banner, type BannerProps, type BaseMediaProps, BlinkingCursor, type BlinkingCursorProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, type BreadcrumbMenuItem, BreadcrumbMenuTrigger, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonShape, TRANSPARENT as COLOR_PICKER_TRANSPARENT, COMPONENT_CONTRACTS, Calendar, CalendarDayButton, Callout, CalloutDescription, CalloutTitle, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardStyle, CardTitle, Carousel, CarouselArrows, type CarouselArrowsProps, type AutoplayConfig as CarouselAutoplayConfig, CarouselDots, type CarouselDotsProps, type CarouselNavButtonProps, CarouselNext, CarouselPrev, type CarouselProps, CarouselSlide, type CarouselSlideProps, CarouselVideoSlide, type CarouselVideoSlideProps, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartPalette, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxCard, type CheckboxCardProps, Code, type CodeDiff, type CodeLanguage, type CodeProps, type CodeReveal, type CodeTrigger, type ColorIntensity, ColorPicker, type ColorPickerProps, type ColorTokenGroup, Combobox, type ComboboxOption, type ComboboxProps, Container, type ContainerMaxW, type ContainerProps, DEFAULT_COLOR_TOKEN_GROUPS, DEMO_SPEED_PRESETS, DataView, type DataViewBadgeOption, type DataViewCellType, type DataViewColumn, DataViewColumns, type DataViewColumnsProps, type DataViewMode, type DataViewProps, type DataViewState, DataViewToggle, type DataViewToggleProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DemoSpeed, DemoStage, type DemoStageProps, DemoTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FILL_TOKENS, FRAGMENT_HEADER, Field, FieldDescription, FieldLabel, type FieldProps, FieldTrailing, FillPicker, type FillPickerProps, FillSection, type FillSectionProps, type FillValue, Flex, type FlexProps, type FontKey, GRADE_PRE_HYDRATION_SCRIPT, type GeneratedTheme, GradeLoader, type GradeLoaderProps, type GradeLoaderSize, GradeModeSwitcher, GradeThemeProvider, type GradeThemeProviderProps, GradeThemeSwitcher, GradientEditor, type GradientEditorProps, type GradientStop, type GradientType, type GradientValue, Grid, type GridProps, Input, type InputStyle, Label, LenisProvider, Logo, type LogoLockup, type LogoMode, type LogoProps, type LogoSize, type LogoSources, type LogoVariant, MOTION_ATTR, Map, MapHandle, MapMarker, MapMarkerProps, MapProps, type MediaAspect, type MediaRadius, MediaSurface, MediaSurfaceContract, type MediaSurfaceProps, Message, type MessageProps, type ModeName, Motion, MotionOverlay, type MotionOverlayProps, type MotionOverlayZone, type MotionProps, MotionScene, type MotionSceneProps, type MotionSceneRegistration, type MotionSceneTransition, MotionScreen, type MotionScreenAnimate, type MotionScreenProps, MotionText, type MotionTextProps, type MotionTextTemplate, MultiSelect, type MultiSelectOption, type MultiSelectProps, type OKLCHTriplet, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PostPreset, Progress, PropertyList, type PropertyListProps, PropertyListRow, type PropertyListRowProps, RadioCard, type RadioCardProps, RadioGroup, RadioGroupItem, type RadiusStyle, type Ramp, ResizableHandle, ResizablePanel, ResizablePanelGroup, Reveal, type RevealAnimation, type RevealProps, type RevealStep, RivePlayer, type RivePlayerProps, Row, type RowProps, type SceneContext, type SceneFactory, type SceneHandle, ScreenAnimator, type ScreenAnimatorProps, type ScreenAnimatorShot, type ScriptedDemoContext, type ScriptedDemoState, ScrollArea, ScrollBar, Section, SectionActions, SectionDescription, SectionEyebrow, SectionMedia, type SectionProps, type SectionScope, SectionSubtitle, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ShaderCompileError, ShaderControls, type ShaderControlsProps, type ShaderPreset, ShaderPresetPicker, type ShaderPresetPickerProps, ShaderPresetPreview, type ShaderPresetPreviewProps, type ShadowIntensity, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SidebarTreeItem, type SidebarTreeItemProps, Skeleton, Slider, Sortable, SortableGroup, type SortableGroupProps, SortableHandle, type SortableHandleProps, SortableItem, type SortableItemProps, type SortableProps, type SpacingDensity, Stack, type StackProps, Swatch, SwatchGroup, type SwatchGroupProps, type SwatchProps, Switch, SwitchCard, type SwitchCardProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type ThemeInput, ThemeToggle, ThreeScene, type ThreeSceneProps, Toggle, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, ToolbarSlot, type ToolbarSlotProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TypeScalePreset, type UseDataViewOptions, type UseScriptedDemoOptions, VideoPlayer, type VideoPlayerProps, asideVariants as appShellAsideVariants, footerVariants as appShellFooterVariants, headerVariants as appShellHeaderVariants, mainVariants as appShellMainVariants, navVariants as appShellNavVariants, applyThemeToRoot, badgeVariants, bannerVariants, buildFragmentShaderScene, builtInThemes, buttonVariants, calloutVariants, calmInput, cn, containerVariants, defaultPostPreset, defaultThemeId, deleteUserTheme, sleep as demoSleep, typeText as demoTypeText, duplicateTheme, energyInput, flexVariants, generateTheme, getComponentContract, getTheme, gradientToCss, gridVariants, listContractedComponents, listThemes, listUserThemes, loadUserThemeInput, postPresets, rowVariants, saveUserTheme, sceneRegistry, bandVariants as sectionBandVariants, setMotion, shaderPresetById, shaderPresets, shellVariants, stackVariants, swatchVariants, themeToCSSVars, toggleVariants, useCarouselApi, useDataView, useGradeTheme, useMaybeGradeTheme, useMotionScene, usePageActive, usePrefersReducedMotion, useReducedMotion, useScriptedDemo };
|
|
5189
|
+
export { ALL_MODES, Accordion, AccordionContent, AccordionItem, AccordionTrigger, AppShell, AppShellAside, type AppShellAsideProps, AppShellFooter, type AppShellFooterProps, AppShellHeader, type AppShellHeaderProps, AppShellMain, type AppShellMainProps, AppShellNav, type AppShellNavProps, type AppShellProps, Avatar, AvatarFallback, AvatarImage, type AvatarTone, BUILT_IN_INPUTS, BackgroundFill, type BackgroundFillFit, type BackgroundFillProps, type BackgroundFillType, Badge, Banner, type BannerProps, type BaseMediaProps, BlinkingCursor, type BlinkingCursorProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, type BreadcrumbMenuItem, BreadcrumbMenuTrigger, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonShape, TRANSPARENT as COLOR_PICKER_TRANSPARENT, COMPONENT_CONTRACTS, Calendar, CalendarDayButton, Callout, CalloutDescription, CalloutTitle, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardStyle, CardTitle, Carousel, CarouselArrows, type CarouselArrowsProps, type AutoplayConfig as CarouselAutoplayConfig, CarouselDots, type CarouselDotsProps, type CarouselNavButtonProps, CarouselNext, CarouselPrev, type CarouselProps, CarouselSlide, type CarouselSlideProps, CarouselVideoSlide, type CarouselVideoSlideProps, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartPalette, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxCard, type CheckboxCardProps, Code, type CodeDiff, type CodeLanguage, type CodeProps, type CodeReveal, type CodeTrigger, type ColorIntensity, ColorPicker, type ColorPickerProps, type ColorTokenGroup, Combobox, type ComboboxOption, type ComboboxProps, Container, type ContainerMaxW, type ContainerProps, DEFAULT_COLOR_TOKEN_GROUPS, DEMO_SPEED_PRESETS, DataView, type DataViewBadgeOption, type DataViewCellType, type DataViewColumn, DataViewColumns, type DataViewColumnsProps, type DataViewMode, type DataViewProps, type DataViewState, DataViewToggle, type DataViewToggleProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DemoSpeed, DemoStage, type DemoStageProps, DemoTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FILL_TOKENS, FRAGMENT_HEADER, Field, FieldDescription, FieldLabel, type FieldProps, FieldTrailing, FillPicker, type FillPickerProps, FillSection, type FillSectionProps, type FillValue, Flex, type FlexProps, type FontKey, GRADE_PRE_HYDRATION_SCRIPT, type GeneratedTheme, GradeLoader, type GradeLoaderProps, type GradeLoaderSize, GradeModeSwitcher, GradeThemeProvider, type GradeThemeProviderProps, GradeThemeSwitcher, GradientEditor, type GradientEditorProps, type GradientStop, type GradientType, type GradientValue, Grid, type GridProps, Input, type InputStyle, Label, LenisProvider, Logo, type LogoLockup, type LogoMode, type LogoProps, type LogoSize, type LogoSources, type LogoVariant, MOTION_ATTR, Map, MapHandle, MapMarker, MapMarkerProps, MapProps, type MediaAspect, type MediaRadius, MediaSurface, MediaSurfaceContract, type MediaSurfaceProps, Message, type MessageProps, type ModeName, Motion, MotionOverlay, type MotionOverlayProps, type MotionOverlayZone, type MotionProps, MotionScene, type MotionSceneProps, type MotionSceneRegistration, type MotionSceneTransition, MotionScreen, type MotionScreenAnimate, type MotionScreenProps, MotionText, type MotionTextProps, type MotionTextTemplate, MultiSelect, type MultiSelectOption, type MultiSelectProps, type OKLCHTriplet, type Palette, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PostPreset, Progress, PropertyList, type PropertyListProps, PropertyListRow, type PropertyListRowProps, RadioCard, type RadioCardProps, RadioGroup, RadioGroupItem, type RadiusStyle, type Ramp, ResizableHandle, ResizablePanel, ResizablePanelGroup, Reveal, type RevealAnimation, type RevealProps, type RevealStep, RivePlayer, type RivePlayerProps, Row, type RowProps, type SceneContext, type SceneFactory, type SceneHandle, ScreenAnimator, type ScreenAnimatorProps, type ScreenAnimatorShot, type ScriptedDemoContext, type ScriptedDemoState, ScrollArea, ScrollBar, Section, SectionActions, SectionBlock, type SectionBlockProps, SectionDescription, SectionEyebrow, SectionMedia, type SectionProps, type SectionScope$1 as SectionScope, SectionSubtitle, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ShaderCompileError, ShaderControls, type ShaderControlsProps, type ShaderPreset, ShaderPresetPicker, type ShaderPresetPickerProps, ShaderPresetPreview, type ShaderPresetPreviewProps, type ShadowIntensity, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SidebarTreeItem, type SidebarTreeItemProps, Skeleton, Slider, Sortable, SortableGroup, type SortableGroupProps, SortableHandle, type SortableHandleProps, SortableItem, type SortableItemProps, type SortableProps, type SpacingDensity, Stack, type StackProps, Swatch, SwatchGroup, type SwatchGroupProps, type SwatchProps, Switch, SwitchCard, type SwitchCardProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type ThemeInput, ThemeToggle, ThreeScene, type ThreeSceneProps, Toggle, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, ToolbarSlot, type ToolbarSlotProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TypeScalePreset, type UseDataViewOptions, type UseScriptedDemoOptions, VideoPlayer, type VideoPlayerProps, asideVariants as appShellAsideVariants, footerVariants as appShellFooterVariants, headerVariants$1 as appShellHeaderVariants, mainVariants as appShellMainVariants, navVariants as appShellNavVariants, applyThemeToRoot, badgeVariants, bannerVariants, buildFragmentShaderScene, builtInThemes, buttonVariants, calloutVariants, calmInput, cn, containerVariants$1 as containerVariants, defaultPostPreset, defaultThemeId, deleteUserTheme, sleep as demoSleep, typeText as demoTypeText, duplicateTheme, energyInput, flexVariants, generateTheme, getComponentContract, getTheme, gradientToCss, gridVariants, listContractedComponents, listThemes, listUserThemes, loadUserThemeInput, postPresets, rowVariants, saveUserTheme, sceneRegistry, bandVariants as sectionBandVariants, sectionBlockVariants, setMotion, shaderPresetById, shaderPresets, shellVariants, stackVariants, swatchVariants, themeToCSSVars, toggleVariants, useCarouselApi, useDataView, useGradeTheme, useMaybeGradeTheme, useMotionScene, usePageActive, usePrefersReducedMotion, useReducedMotion, useScriptedDemo };
|