@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/chunks/{Loader-B2Xb_VOS.js → Loader-B_h7e46-.js} +3 -3
- package/dist/chunks/{PageNotFound-m2nhN6mi.js → PageNotFound-BuG9Tgni.js} +6 -6
- package/dist/chunks/SidebarLayout-t-P8wlBJ.js +1807 -0
- package/dist/chunks/Textarea-DslZ0KXP.js +2478 -0
- package/dist/chunks/{calendar-DMGJ52xx.js → calendar-C-nHBQQ8.js} +353 -305
- package/dist/chunks/index-CA-6Q-v_.js +3138 -0
- package/dist/forms.js +2 -2
- package/dist/index.d.ts +18 -18
- package/dist/index.js +269 -256
- package/dist/interstitials.js +1 -1
- package/dist/navigation.js +1 -1
- package/package.json +17 -9
- package/dist/chunks/SidebarLayout-B0ka92-H.js +0 -2034
- package/dist/chunks/Textarea-wvqdYRvc.js +0 -2894
- package/dist/chunks/popover-Bdo9y9v9.js +0 -2911
package/dist/forms.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as e, a as s } from "./chunks/calendar-
|
|
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-
|
|
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
|
|
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
|
|
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
|
|
12
|
-
import
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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;
|