@still-forest/canopy 0.22.0 → 0.22.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.ts +5 -1
- package/dist/index.js +8291 -6099
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,10 @@ declare interface BadgeProps {
|
|
|
35
35
|
className?: string;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
export declare type BaseButtonSize = "default" | "sm" | "lg" | "icon";
|
|
39
|
+
|
|
40
|
+
export declare type BaseButtonVariant = "default" | "secondary" | "destructive" | "outline" | "ghost" | "link";
|
|
41
|
+
|
|
38
42
|
declare const Body_2: ({ children, className, withContainer, ...props }: BodyProps) => JSX.Element;
|
|
39
43
|
|
|
40
44
|
declare interface BodyProps extends FlexProps {
|
|
@@ -552,7 +556,7 @@ export declare function Skeleton({ className, ...props }: React.ComponentProps<"
|
|
|
552
556
|
|
|
553
557
|
export declare const SubmitButton: ({ submitting, disabled, submittingIcon, action, noIcon, ...rest }: SubmitButtonProps) => JSX.Element;
|
|
554
558
|
|
|
555
|
-
declare interface SubmitButtonProps extends ButtonProps {
|
|
559
|
+
export declare interface SubmitButtonProps extends ButtonProps {
|
|
556
560
|
action?: "default" | "submit" | "save" | "send";
|
|
557
561
|
submitting?: boolean;
|
|
558
562
|
disabled?: boolean;
|