@sourceful-energy/ui 0.1.28 → 0.1.30
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 +51 -11
- package/dist/index.d.ts +51 -11
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -483,7 +483,7 @@ declare function DesignSystemProvider({ children, defaultTheme, defaultFontMode,
|
|
|
483
483
|
* 3 4 5
|
|
484
484
|
* 6 7 8
|
|
485
485
|
*/
|
|
486
|
-
type PatternType = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "L-tl" | "L-tr" | "L-bl" | "L-br" | "T-top" | "T-bot" | "T-left" | "T-right" | "duo-h" | "duo-v" | "duo-diag" | "frame" | "frame-sync" | "plus-hollow" | "sparse-1" | "sparse-2" | "sparse-3";
|
|
486
|
+
type PatternType$4 = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "L-tl" | "L-tr" | "L-bl" | "L-br" | "T-top" | "T-bot" | "T-left" | "T-right" | "duo-h" | "duo-v" | "duo-diag" | "frame" | "frame-sync" | "plus-hollow" | "sparse-1" | "sparse-2" | "sparse-3";
|
|
487
487
|
interface PatternFrame {
|
|
488
488
|
activePixels: number[];
|
|
489
489
|
duration?: number;
|
|
@@ -499,39 +499,75 @@ interface PatternDefinition {
|
|
|
499
499
|
* Each pattern is an array of frames, where each frame specifies which pixels are active.
|
|
500
500
|
* Animation interpolates between frames for smooth transitions.
|
|
501
501
|
*/
|
|
502
|
-
declare const patterns: Record<PatternType, PatternDefinition>;
|
|
503
|
-
declare const patternNames: PatternType[];
|
|
504
|
-
declare const patternCategories: Record<string, PatternType[]>;
|
|
502
|
+
declare const patterns: Record<PatternType$4, PatternDefinition>;
|
|
503
|
+
declare const patternNames: PatternType$4[];
|
|
504
|
+
declare const patternCategories: Record<string, PatternType$4[]>;
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* Pattern definitions for the 4x4 PixelGrid component.
|
|
508
|
+
*
|
|
509
|
+
* Grid position reference (4x4):
|
|
510
|
+
* 0 1 2 3 (row 0)
|
|
511
|
+
* 4 5 6 7 (row 1)
|
|
512
|
+
* 8 9 10 11 (row 2)
|
|
513
|
+
* 12 13 14 15 (row 3)
|
|
514
|
+
*/
|
|
515
|
+
type PatternType$3 = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "frame" | "frame-sync" | "plus-hollow" | "square-inner" | "square-outer" | "cross-full" | "cross-spin";
|
|
516
|
+
|
|
517
|
+
/**
|
|
518
|
+
* Pattern definitions for the 6x6 PixelGrid component.
|
|
519
|
+
*
|
|
520
|
+
* Grid position reference (6x6):
|
|
521
|
+
* 0 1 2 3 4 5 (row 0)
|
|
522
|
+
* 6 7 8 9 10 11 (row 1)
|
|
523
|
+
* 12 13 14 15 16 17 (row 2)
|
|
524
|
+
* 18 19 20 21 22 23 (row 3)
|
|
525
|
+
* 24 25 26 27 28 29 (row 4)
|
|
526
|
+
* 30 31 32 33 34 35 (row 5)
|
|
527
|
+
*/
|
|
528
|
+
type PatternType$2 = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "frame" | "frame-sync" | "plus-hollow" | "ripple" | "spiral" | "checkerboard" | "diamond" | "wave";
|
|
505
529
|
|
|
506
530
|
type PixelGridColor = "blue" | "pink" | "green";
|
|
507
531
|
type PixelGridSpeed = "slow" | "normal" | "fast";
|
|
508
532
|
type PixelGridSize = "sm" | "md" | "lg";
|
|
533
|
+
type PixelGridDimension = 3 | 4 | 6;
|
|
534
|
+
|
|
535
|
+
type PatternType$1 = PatternType$4 | PatternType$3 | PatternType$2;
|
|
509
536
|
interface PixelGridProps {
|
|
510
537
|
/** The animation pattern to display */
|
|
511
|
-
pattern: PatternType;
|
|
538
|
+
pattern: PatternType$1;
|
|
539
|
+
/** Grid dimension - 3x3, 4x4, or 6x6 */
|
|
540
|
+
dimension?: PixelGridDimension;
|
|
512
541
|
/** Color theme - blue/cyan or pink/coral or green */
|
|
513
542
|
color?: PixelGridColor;
|
|
514
543
|
/** Animation speed */
|
|
515
544
|
speed?: PixelGridSpeed;
|
|
516
545
|
/** Grid size */
|
|
517
546
|
size?: PixelGridSize;
|
|
518
|
-
/**
|
|
547
|
+
/** Whether to animate (false = static display) */
|
|
548
|
+
animated?: boolean;
|
|
549
|
+
/** Pause the animation (only applies when animated=true) */
|
|
519
550
|
paused?: boolean;
|
|
520
551
|
/** Additional className for the container */
|
|
521
552
|
className?: string;
|
|
522
553
|
/** Show pattern label below the grid */
|
|
523
554
|
showLabel?: boolean;
|
|
524
555
|
}
|
|
525
|
-
declare function PixelGrid({ pattern, color, speed, size, paused, className, showLabel, }: PixelGridProps): react_jsx_runtime.JSX.Element;
|
|
556
|
+
declare function PixelGrid({ pattern, dimension, color, speed, size, animated, paused, className, showLabel, }: PixelGridProps): react_jsx_runtime.JSX.Element | null;
|
|
526
557
|
declare namespace PixelGrid {
|
|
527
558
|
var displayName: string;
|
|
528
559
|
}
|
|
529
560
|
|
|
561
|
+
type PatternType = PatternType$4 | PatternType$3 | PatternType$2;
|
|
530
562
|
interface PixelGridShowcaseProps {
|
|
563
|
+
/** Grid dimension - 3x3, 4x4, or 6x6 */
|
|
564
|
+
dimension?: PixelGridDimension;
|
|
531
565
|
/** Color theme for all grids */
|
|
532
566
|
color?: PixelGridColor;
|
|
533
567
|
/** Size for all grids */
|
|
534
568
|
size?: PixelGridSize;
|
|
569
|
+
/** Whether to animate (false = static display) */
|
|
570
|
+
animated?: boolean;
|
|
535
571
|
/** Show category headers */
|
|
536
572
|
showCategories?: boolean;
|
|
537
573
|
/** Filter to specific categories */
|
|
@@ -539,7 +575,7 @@ interface PixelGridShowcaseProps {
|
|
|
539
575
|
/** Additional className */
|
|
540
576
|
className?: string;
|
|
541
577
|
}
|
|
542
|
-
declare function PixelGridShowcase({ color, size, showCategories, categories, className, }: PixelGridShowcaseProps): react_jsx_runtime.JSX.Element;
|
|
578
|
+
declare function PixelGridShowcase({ dimension, color, size, animated, showCategories, categories, className, }: PixelGridShowcaseProps): react_jsx_runtime.JSX.Element;
|
|
543
579
|
declare namespace PixelGridShowcase {
|
|
544
580
|
var displayName: string;
|
|
545
581
|
}
|
|
@@ -548,10 +584,12 @@ declare namespace PixelGridShowcase {
|
|
|
548
584
|
*/
|
|
549
585
|
interface PixelGridColorComparisonProps {
|
|
550
586
|
pattern: PatternType;
|
|
587
|
+
dimension?: PixelGridDimension;
|
|
551
588
|
size?: PixelGridSize;
|
|
589
|
+
animated?: boolean;
|
|
552
590
|
className?: string;
|
|
553
591
|
}
|
|
554
|
-
declare function PixelGridColorComparison({ pattern, size, className, }: PixelGridColorComparisonProps): react_jsx_runtime.JSX.Element;
|
|
592
|
+
declare function PixelGridColorComparison({ pattern, dimension, size, animated, className, }: PixelGridColorComparisonProps): react_jsx_runtime.JSX.Element;
|
|
555
593
|
declare namespace PixelGridColorComparison {
|
|
556
594
|
var displayName: string;
|
|
557
595
|
}
|
|
@@ -560,12 +598,14 @@ declare namespace PixelGridColorComparison {
|
|
|
560
598
|
*/
|
|
561
599
|
interface PixelGridSizeComparisonProps {
|
|
562
600
|
pattern: PatternType;
|
|
601
|
+
dimension?: PixelGridDimension;
|
|
563
602
|
color?: PixelGridColor;
|
|
603
|
+
animated?: boolean;
|
|
564
604
|
className?: string;
|
|
565
605
|
}
|
|
566
|
-
declare function PixelGridSizeComparison({ pattern, color, className, }: PixelGridSizeComparisonProps): react_jsx_runtime.JSX.Element;
|
|
606
|
+
declare function PixelGridSizeComparison({ pattern, dimension, color, animated, className, }: PixelGridSizeComparisonProps): react_jsx_runtime.JSX.Element;
|
|
567
607
|
declare namespace PixelGridSizeComparison {
|
|
568
608
|
var displayName: string;
|
|
569
609
|
}
|
|
570
610
|
|
|
571
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertTitle, Badge, type BreadcrumbItem, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type ColorMode, DesignSystemProvider, type DesignSystemProviderProps, 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, type FocusMode, type FontMode, Input, Label, LenisProvider, type PatternDefinition, type PatternFrame, type PatternType, PixelGrid, type PixelGridColor, PixelGridColorComparison, type PixelGridColorComparisonProps, type PixelGridProps, PixelGridShowcase, type PixelGridShowcaseProps, type PixelGridSize, PixelGridSizeComparison, type PixelGridSizeComparisonProps, type PixelGridSpeed, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SideMenu, type SideMenuItem, type SideMenuProps, type SideMenuSection, type SimpleTab, SimpleTabs, SimpleTabsContent, SimpleTabsList, type SimpleTabsListProps, SimpleTabsPanel, type SimpleTabsPanelProps, type SimpleTabsProps, SimpleTabsRoot, type SimpleTabsRootProps, SimpleTabsTrigger, type SimpleTabsTriggerProps, Skeleton, Slider, type SpacingMode, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type Theme, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopMenu, type TopMenuProps, TopMenuUser, TopMenuUserItem, type TopMenuUserItemProps, type TopMenuUserProps, TopMenuUserSection, badgeVariants, buttonVariants, cn, patternCategories, patternNames, patterns, useAccessibility, useColorMode, useDesignSystem, useDesignSystemTheme, useFocusMode, useFontMode, useSpacingMode };
|
|
611
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertTitle, Badge, type BreadcrumbItem, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type ColorMode, DesignSystemProvider, type DesignSystemProviderProps, 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, type FocusMode, type FontMode, Input, Label, LenisProvider, type PatternDefinition, type PatternFrame, type PatternType$1 as PatternType, PixelGrid, type PixelGridColor, PixelGridColorComparison, type PixelGridColorComparisonProps, type PixelGridProps, PixelGridShowcase, type PixelGridShowcaseProps, type PixelGridSize, PixelGridSizeComparison, type PixelGridSizeComparisonProps, type PixelGridSpeed, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SideMenu, type SideMenuItem, type SideMenuProps, type SideMenuSection, type SimpleTab, SimpleTabs, SimpleTabsContent, SimpleTabsList, type SimpleTabsListProps, SimpleTabsPanel, type SimpleTabsPanelProps, type SimpleTabsProps, SimpleTabsRoot, type SimpleTabsRootProps, SimpleTabsTrigger, type SimpleTabsTriggerProps, Skeleton, Slider, type SpacingMode, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type Theme, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopMenu, type TopMenuProps, TopMenuUser, TopMenuUserItem, type TopMenuUserItemProps, type TopMenuUserProps, TopMenuUserSection, badgeVariants, buttonVariants, cn, patternCategories, patternNames, patterns, useAccessibility, useColorMode, useDesignSystem, useDesignSystemTheme, useFocusMode, useFontMode, useSpacingMode };
|
package/dist/index.d.ts
CHANGED
|
@@ -483,7 +483,7 @@ declare function DesignSystemProvider({ children, defaultTheme, defaultFontMode,
|
|
|
483
483
|
* 3 4 5
|
|
484
484
|
* 6 7 8
|
|
485
485
|
*/
|
|
486
|
-
type PatternType = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "L-tl" | "L-tr" | "L-bl" | "L-br" | "T-top" | "T-bot" | "T-left" | "T-right" | "duo-h" | "duo-v" | "duo-diag" | "frame" | "frame-sync" | "plus-hollow" | "sparse-1" | "sparse-2" | "sparse-3";
|
|
486
|
+
type PatternType$4 = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "L-tl" | "L-tr" | "L-bl" | "L-br" | "T-top" | "T-bot" | "T-left" | "T-right" | "duo-h" | "duo-v" | "duo-diag" | "frame" | "frame-sync" | "plus-hollow" | "sparse-1" | "sparse-2" | "sparse-3";
|
|
487
487
|
interface PatternFrame {
|
|
488
488
|
activePixels: number[];
|
|
489
489
|
duration?: number;
|
|
@@ -499,39 +499,75 @@ interface PatternDefinition {
|
|
|
499
499
|
* Each pattern is an array of frames, where each frame specifies which pixels are active.
|
|
500
500
|
* Animation interpolates between frames for smooth transitions.
|
|
501
501
|
*/
|
|
502
|
-
declare const patterns: Record<PatternType, PatternDefinition>;
|
|
503
|
-
declare const patternNames: PatternType[];
|
|
504
|
-
declare const patternCategories: Record<string, PatternType[]>;
|
|
502
|
+
declare const patterns: Record<PatternType$4, PatternDefinition>;
|
|
503
|
+
declare const patternNames: PatternType$4[];
|
|
504
|
+
declare const patternCategories: Record<string, PatternType$4[]>;
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* Pattern definitions for the 4x4 PixelGrid component.
|
|
508
|
+
*
|
|
509
|
+
* Grid position reference (4x4):
|
|
510
|
+
* 0 1 2 3 (row 0)
|
|
511
|
+
* 4 5 6 7 (row 1)
|
|
512
|
+
* 8 9 10 11 (row 2)
|
|
513
|
+
* 12 13 14 15 (row 3)
|
|
514
|
+
*/
|
|
515
|
+
type PatternType$3 = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "frame" | "frame-sync" | "plus-hollow" | "square-inner" | "square-outer" | "cross-full" | "cross-spin";
|
|
516
|
+
|
|
517
|
+
/**
|
|
518
|
+
* Pattern definitions for the 6x6 PixelGrid component.
|
|
519
|
+
*
|
|
520
|
+
* Grid position reference (6x6):
|
|
521
|
+
* 0 1 2 3 4 5 (row 0)
|
|
522
|
+
* 6 7 8 9 10 11 (row 1)
|
|
523
|
+
* 12 13 14 15 16 17 (row 2)
|
|
524
|
+
* 18 19 20 21 22 23 (row 3)
|
|
525
|
+
* 24 25 26 27 28 29 (row 4)
|
|
526
|
+
* 30 31 32 33 34 35 (row 5)
|
|
527
|
+
*/
|
|
528
|
+
type PatternType$2 = "solo-center" | "solo-tl" | "solo-br" | "line-h-top" | "line-h-mid" | "line-h-bot" | "line-v-left" | "line-v-mid" | "line-v-right" | "line-diag-1" | "line-diag-2" | "corners-sync" | "corners-only" | "frame" | "frame-sync" | "plus-hollow" | "ripple" | "spiral" | "checkerboard" | "diamond" | "wave";
|
|
505
529
|
|
|
506
530
|
type PixelGridColor = "blue" | "pink" | "green";
|
|
507
531
|
type PixelGridSpeed = "slow" | "normal" | "fast";
|
|
508
532
|
type PixelGridSize = "sm" | "md" | "lg";
|
|
533
|
+
type PixelGridDimension = 3 | 4 | 6;
|
|
534
|
+
|
|
535
|
+
type PatternType$1 = PatternType$4 | PatternType$3 | PatternType$2;
|
|
509
536
|
interface PixelGridProps {
|
|
510
537
|
/** The animation pattern to display */
|
|
511
|
-
pattern: PatternType;
|
|
538
|
+
pattern: PatternType$1;
|
|
539
|
+
/** Grid dimension - 3x3, 4x4, or 6x6 */
|
|
540
|
+
dimension?: PixelGridDimension;
|
|
512
541
|
/** Color theme - blue/cyan or pink/coral or green */
|
|
513
542
|
color?: PixelGridColor;
|
|
514
543
|
/** Animation speed */
|
|
515
544
|
speed?: PixelGridSpeed;
|
|
516
545
|
/** Grid size */
|
|
517
546
|
size?: PixelGridSize;
|
|
518
|
-
/**
|
|
547
|
+
/** Whether to animate (false = static display) */
|
|
548
|
+
animated?: boolean;
|
|
549
|
+
/** Pause the animation (only applies when animated=true) */
|
|
519
550
|
paused?: boolean;
|
|
520
551
|
/** Additional className for the container */
|
|
521
552
|
className?: string;
|
|
522
553
|
/** Show pattern label below the grid */
|
|
523
554
|
showLabel?: boolean;
|
|
524
555
|
}
|
|
525
|
-
declare function PixelGrid({ pattern, color, speed, size, paused, className, showLabel, }: PixelGridProps): react_jsx_runtime.JSX.Element;
|
|
556
|
+
declare function PixelGrid({ pattern, dimension, color, speed, size, animated, paused, className, showLabel, }: PixelGridProps): react_jsx_runtime.JSX.Element | null;
|
|
526
557
|
declare namespace PixelGrid {
|
|
527
558
|
var displayName: string;
|
|
528
559
|
}
|
|
529
560
|
|
|
561
|
+
type PatternType = PatternType$4 | PatternType$3 | PatternType$2;
|
|
530
562
|
interface PixelGridShowcaseProps {
|
|
563
|
+
/** Grid dimension - 3x3, 4x4, or 6x6 */
|
|
564
|
+
dimension?: PixelGridDimension;
|
|
531
565
|
/** Color theme for all grids */
|
|
532
566
|
color?: PixelGridColor;
|
|
533
567
|
/** Size for all grids */
|
|
534
568
|
size?: PixelGridSize;
|
|
569
|
+
/** Whether to animate (false = static display) */
|
|
570
|
+
animated?: boolean;
|
|
535
571
|
/** Show category headers */
|
|
536
572
|
showCategories?: boolean;
|
|
537
573
|
/** Filter to specific categories */
|
|
@@ -539,7 +575,7 @@ interface PixelGridShowcaseProps {
|
|
|
539
575
|
/** Additional className */
|
|
540
576
|
className?: string;
|
|
541
577
|
}
|
|
542
|
-
declare function PixelGridShowcase({ color, size, showCategories, categories, className, }: PixelGridShowcaseProps): react_jsx_runtime.JSX.Element;
|
|
578
|
+
declare function PixelGridShowcase({ dimension, color, size, animated, showCategories, categories, className, }: PixelGridShowcaseProps): react_jsx_runtime.JSX.Element;
|
|
543
579
|
declare namespace PixelGridShowcase {
|
|
544
580
|
var displayName: string;
|
|
545
581
|
}
|
|
@@ -548,10 +584,12 @@ declare namespace PixelGridShowcase {
|
|
|
548
584
|
*/
|
|
549
585
|
interface PixelGridColorComparisonProps {
|
|
550
586
|
pattern: PatternType;
|
|
587
|
+
dimension?: PixelGridDimension;
|
|
551
588
|
size?: PixelGridSize;
|
|
589
|
+
animated?: boolean;
|
|
552
590
|
className?: string;
|
|
553
591
|
}
|
|
554
|
-
declare function PixelGridColorComparison({ pattern, size, className, }: PixelGridColorComparisonProps): react_jsx_runtime.JSX.Element;
|
|
592
|
+
declare function PixelGridColorComparison({ pattern, dimension, size, animated, className, }: PixelGridColorComparisonProps): react_jsx_runtime.JSX.Element;
|
|
555
593
|
declare namespace PixelGridColorComparison {
|
|
556
594
|
var displayName: string;
|
|
557
595
|
}
|
|
@@ -560,12 +598,14 @@ declare namespace PixelGridColorComparison {
|
|
|
560
598
|
*/
|
|
561
599
|
interface PixelGridSizeComparisonProps {
|
|
562
600
|
pattern: PatternType;
|
|
601
|
+
dimension?: PixelGridDimension;
|
|
563
602
|
color?: PixelGridColor;
|
|
603
|
+
animated?: boolean;
|
|
564
604
|
className?: string;
|
|
565
605
|
}
|
|
566
|
-
declare function PixelGridSizeComparison({ pattern, color, className, }: PixelGridSizeComparisonProps): react_jsx_runtime.JSX.Element;
|
|
606
|
+
declare function PixelGridSizeComparison({ pattern, dimension, color, animated, className, }: PixelGridSizeComparisonProps): react_jsx_runtime.JSX.Element;
|
|
567
607
|
declare namespace PixelGridSizeComparison {
|
|
568
608
|
var displayName: string;
|
|
569
609
|
}
|
|
570
610
|
|
|
571
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertTitle, Badge, type BreadcrumbItem, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type ColorMode, DesignSystemProvider, type DesignSystemProviderProps, 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, type FocusMode, type FontMode, Input, Label, LenisProvider, type PatternDefinition, type PatternFrame, type PatternType, PixelGrid, type PixelGridColor, PixelGridColorComparison, type PixelGridColorComparisonProps, type PixelGridProps, PixelGridShowcase, type PixelGridShowcaseProps, type PixelGridSize, PixelGridSizeComparison, type PixelGridSizeComparisonProps, type PixelGridSpeed, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SideMenu, type SideMenuItem, type SideMenuProps, type SideMenuSection, type SimpleTab, SimpleTabs, SimpleTabsContent, SimpleTabsList, type SimpleTabsListProps, SimpleTabsPanel, type SimpleTabsPanelProps, type SimpleTabsProps, SimpleTabsRoot, type SimpleTabsRootProps, SimpleTabsTrigger, type SimpleTabsTriggerProps, Skeleton, Slider, type SpacingMode, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type Theme, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopMenu, type TopMenuProps, TopMenuUser, TopMenuUserItem, type TopMenuUserItemProps, type TopMenuUserProps, TopMenuUserSection, badgeVariants, buttonVariants, cn, patternCategories, patternNames, patterns, useAccessibility, useColorMode, useDesignSystem, useDesignSystemTheme, useFocusMode, useFontMode, useSpacingMode };
|
|
611
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertTitle, Badge, type BreadcrumbItem, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type ColorMode, DesignSystemProvider, type DesignSystemProviderProps, 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, type FocusMode, type FontMode, Input, Label, LenisProvider, type PatternDefinition, type PatternFrame, type PatternType$1 as PatternType, PixelGrid, type PixelGridColor, PixelGridColorComparison, type PixelGridColorComparisonProps, type PixelGridProps, PixelGridShowcase, type PixelGridShowcaseProps, type PixelGridSize, PixelGridSizeComparison, type PixelGridSizeComparisonProps, type PixelGridSpeed, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SideMenu, type SideMenuItem, type SideMenuProps, type SideMenuSection, type SimpleTab, SimpleTabs, SimpleTabsContent, SimpleTabsList, type SimpleTabsListProps, SimpleTabsPanel, type SimpleTabsPanelProps, type SimpleTabsProps, SimpleTabsRoot, type SimpleTabsRootProps, SimpleTabsTrigger, type SimpleTabsTriggerProps, Skeleton, Slider, type SpacingMode, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type Theme, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopMenu, type TopMenuProps, TopMenuUser, TopMenuUserItem, type TopMenuUserItemProps, type TopMenuUserProps, TopMenuUserSection, badgeVariants, buttonVariants, cn, patternCategories, patternNames, patterns, useAccessibility, useColorMode, useDesignSystem, useDesignSystemTheme, useFocusMode, useFontMode, useSpacingMode };
|