@still-forest/canopy 0.38.0 → 0.38.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/forms.js CHANGED
@@ -1,5 +1,5 @@
1
- import { B as e, a as s } from "./chunks/calendar-DMGJ52xx.js";
2
- import { C as u, a as r, b as n, c as p, D as c, I, d as B, L as b, N as l, R as x, e as S, f as i, S as m, g as D, T as f } from "./chunks/Textarea-wvqdYRvc.js";
1
+ import { B as e, a as s } from "./chunks/calendar-C-nHBQQ8.js";
2
+ import { C as u, a as r, b as n, c as p, D as c, I, d as B, L as b, N as l, R as x, e as S, f as i, S as m, g as D, T as f } from "./chunks/Textarea-DslZ0KXP.js";
3
3
  export {
4
4
  e as Button,
5
5
  s as ButtonGroup,
package/dist/index.d.ts CHANGED
@@ -1,20 +1,20 @@
1
- import { Accordion as Accordion_3 } from 'radix-ui';
1
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
2
2
  import { ClassProp } from 'class-variance-authority/types';
3
3
  import { ClassValue } from 'clsx';
4
4
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
5
5
  import { ComponentProps } from 'react';
6
6
  import { default as default_2 } from 'react';
7
7
  import { JSX } from 'react/jsx-runtime';
8
- import { Popover as Popover_3 } from 'radix-ui';
8
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
9
9
  import * as React_2 from 'react';
10
10
  import { ReactNode } from 'react';
11
- import { Tabs as Tabs_2 } from 'radix-ui';
12
- import { Tooltip as Tooltip_3 } from 'radix-ui';
11
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
12
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
13
13
  import { VariantProps } from 'class-variance-authority';
14
14
 
15
15
  export declare const Accordion: AccordionComponent;
16
16
 
17
- declare function Accordion_2({ ...props }: React_2.ComponentProps<typeof Accordion_3.Root>): JSX.Element;
17
+ declare function Accordion_2({ ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Root>): JSX.Element;
18
18
 
19
19
  declare type AccordionComponent = React.FC<AccordionProps> & {
20
20
  Item: React.FC<AccordionItemProps>;
@@ -22,11 +22,11 @@ declare type AccordionComponent = React.FC<AccordionProps> & {
22
22
  Content: React.FC<AccordionContentProps>;
23
23
  };
24
24
 
25
- declare function AccordionContent({ className, children, ...props }: React_2.ComponentProps<typeof Accordion_3.Content>): JSX.Element;
25
+ declare function AccordionContent({ className, children, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Content>): JSX.Element;
26
26
 
27
27
  declare type AccordionContentProps = React.ComponentProps<typeof AccordionContent>;
28
28
 
29
- declare function AccordionItem({ className, ...props }: React_2.ComponentProps<typeof Accordion_3.Item>): JSX.Element;
29
+ declare function AccordionItem({ className, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Item>): JSX.Element;
30
30
 
31
31
  declare type AccordionItemProps = React.ComponentProps<typeof AccordionItem>;
32
32
 
@@ -34,7 +34,7 @@ export declare type AccordionProps = React.ComponentProps<typeof Accordion_2> &
34
34
  children: ReactNode;
35
35
  };
36
36
 
37
- declare function AccordionTrigger({ className, children, ...props }: React_2.ComponentProps<typeof Accordion_3.Trigger>): JSX.Element;
37
+ declare function AccordionTrigger({ className, children, ...props }: React_2.ComponentProps<typeof AccordionPrimitive.Trigger>): JSX.Element;
38
38
 
39
39
  declare type AccordionTriggerProps = React.ComponentProps<typeof AccordionTrigger>;
40
40
 
@@ -598,16 +598,16 @@ export declare const Paragraph: ({ children, className, as, ...props }: TextProp
598
598
 
599
599
  export declare const Popover: PopoverComponent;
600
600
 
601
- declare function Popover_2({ ...props }: React_2.ComponentProps<typeof Popover_3.Root>): JSX.Element;
601
+ declare function Popover_2({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Root>): JSX.Element;
602
602
 
603
603
  declare type PopoverComponent = default_2.FC<default_2.ComponentProps<typeof Popover_2>> & {
604
604
  Trigger: typeof PopoverTrigger;
605
605
  Content: typeof PopoverContent;
606
606
  };
607
607
 
608
- declare function PopoverContent({ className, align, sideOffset, ...props }: React_2.ComponentProps<typeof Popover_3.Content>): JSX.Element;
608
+ declare function PopoverContent({ className, align, sideOffset, ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Content>): JSX.Element;
609
609
 
610
- declare function PopoverTrigger({ ...props }: React_2.ComponentProps<typeof Popover_3.Trigger>): JSX.Element;
610
+ declare function PopoverTrigger({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Trigger>): JSX.Element;
611
611
 
612
612
  declare type Position = (typeof POSITIONS)[number];
613
613
 
@@ -786,13 +786,13 @@ export declare function TableHeader({ className, ...props }: React_2.ComponentPr
786
786
 
787
787
  export declare function TableRow({ className, ...props }: React_2.ComponentProps<"tr">): JSX.Element;
788
788
 
789
- export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.Root>): JSX.Element;
789
+ export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
790
790
 
791
- export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.Content>): JSX.Element;
791
+ export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): JSX.Element;
792
792
 
793
- export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.List>): JSX.Element;
793
+ export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): JSX.Element;
794
794
 
795
- export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.Trigger>): JSX.Element;
795
+ export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX.Element;
796
796
 
797
797
  declare const TAILWIND_COLORS: readonly ["red", "orange", "amber", "yellow", "lime", "green", "emerald", "teal", "cyan", "sky", "blue", "indigo", "violet", "purple", "fuchsia", "pink", "rose", "slate", "gray", "zinc", "neutral", "stone", "white", "black"];
798
798
 
@@ -894,20 +894,20 @@ export declare interface ThemeSelectorProps {
894
894
 
895
895
  export declare const Tooltip: TooltipComponent;
896
896
 
897
- declare function Tooltip_2({ ...props }: React_2.ComponentProps<typeof Tooltip_3.Root>): JSX.Element;
897
+ declare function Tooltip_2({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Root>): JSX.Element;
898
898
 
899
899
  declare type TooltipComponent = React.FC<TooltipProps> & {
900
900
  Trigger: React.FC<TooltipTriggerProps>;
901
901
  Content: React.FC<TooltipContentProps>;
902
902
  };
903
903
 
904
- declare function TooltipContent({ className, sideOffset, children, ...props }: React_2.ComponentProps<typeof Tooltip_3.Content>): JSX.Element;
904
+ declare function TooltipContent({ className, sideOffset, children, ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Content>): JSX.Element;
905
905
 
906
906
  declare type TooltipContentProps = React.ComponentProps<typeof TooltipContent>;
907
907
 
908
908
  declare type TooltipProps = React.ComponentProps<typeof Tooltip_2>;
909
909
 
910
- declare function TooltipTrigger({ ...props }: React_2.ComponentProps<typeof Tooltip_3.Trigger>): JSX.Element;
910
+ declare function TooltipTrigger({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Trigger>): JSX.Element;
911
911
 
912
912
  declare type TooltipTriggerProps = React.ComponentProps<typeof TooltipTrigger> & {
913
913
  cursor?: CursorType;