@6thbridge/hexa 0.0.79 → 0.0.80
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 +15 -3
- package/dist/index.d.ts +15 -3
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +38 -17
- package/package.json +1 -1
- package/tsconfig.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -670,21 +670,33 @@ declare function Tabs({ tabs, defaultValue, onChange }: TabsProps): react_jsx_ru
|
|
|
670
670
|
declare const featureBannerVariants: (props?: ({
|
|
671
671
|
variant?: "success" | "pending" | "default" | "danger" | null | undefined;
|
|
672
672
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
673
|
+
|
|
674
|
+
type FeatureBannerActionVariant = "primary" | "outlined";
|
|
675
|
+
type FeatureBannerAlign = "start" | "center";
|
|
676
|
+
type FeatureBannerClassNames = {
|
|
677
|
+
root?: string;
|
|
678
|
+
title?: string;
|
|
679
|
+
message?: string;
|
|
680
|
+
icon?: string;
|
|
681
|
+
action?: string;
|
|
682
|
+
};
|
|
673
683
|
type FeatureBannerProps = {
|
|
674
684
|
title: string;
|
|
675
685
|
message?: ReactNode;
|
|
676
686
|
icon?: ReactNode;
|
|
677
687
|
action?: {
|
|
678
688
|
label: string;
|
|
689
|
+
variant?: FeatureBannerActionVariant;
|
|
679
690
|
onClick: () => void;
|
|
680
|
-
className?: string;
|
|
681
691
|
};
|
|
682
692
|
dismissible?: boolean;
|
|
683
693
|
onDismiss?: () => void;
|
|
684
694
|
isOpen?: boolean;
|
|
685
|
-
|
|
695
|
+
align?: FeatureBannerAlign;
|
|
696
|
+
classNames?: FeatureBannerClassNames;
|
|
686
697
|
} & VariantProps<typeof featureBannerVariants>;
|
|
687
|
-
|
|
698
|
+
|
|
699
|
+
declare const FeatureBanner: ({ title, message, variant, icon, action, dismissible, onDismiss, isOpen, align, classNames, }: FeatureBannerProps) => react_jsx_runtime.JSX.Element | null;
|
|
688
700
|
|
|
689
701
|
type EditorControl = "bold" | "italic" | "underline" | "strike" | "heading1" | "bulletList" | "orderedList" | "blockquote" | "textStyle" | "link";
|
|
690
702
|
|
package/dist/index.d.ts
CHANGED
|
@@ -670,21 +670,33 @@ declare function Tabs({ tabs, defaultValue, onChange }: TabsProps): react_jsx_ru
|
|
|
670
670
|
declare const featureBannerVariants: (props?: ({
|
|
671
671
|
variant?: "success" | "pending" | "default" | "danger" | null | undefined;
|
|
672
672
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
673
|
+
|
|
674
|
+
type FeatureBannerActionVariant = "primary" | "outlined";
|
|
675
|
+
type FeatureBannerAlign = "start" | "center";
|
|
676
|
+
type FeatureBannerClassNames = {
|
|
677
|
+
root?: string;
|
|
678
|
+
title?: string;
|
|
679
|
+
message?: string;
|
|
680
|
+
icon?: string;
|
|
681
|
+
action?: string;
|
|
682
|
+
};
|
|
673
683
|
type FeatureBannerProps = {
|
|
674
684
|
title: string;
|
|
675
685
|
message?: ReactNode;
|
|
676
686
|
icon?: ReactNode;
|
|
677
687
|
action?: {
|
|
678
688
|
label: string;
|
|
689
|
+
variant?: FeatureBannerActionVariant;
|
|
679
690
|
onClick: () => void;
|
|
680
|
-
className?: string;
|
|
681
691
|
};
|
|
682
692
|
dismissible?: boolean;
|
|
683
693
|
onDismiss?: () => void;
|
|
684
694
|
isOpen?: boolean;
|
|
685
|
-
|
|
695
|
+
align?: FeatureBannerAlign;
|
|
696
|
+
classNames?: FeatureBannerClassNames;
|
|
686
697
|
} & VariantProps<typeof featureBannerVariants>;
|
|
687
|
-
|
|
698
|
+
|
|
699
|
+
declare const FeatureBanner: ({ title, message, variant, icon, action, dismissible, onDismiss, isOpen, align, classNames, }: FeatureBannerProps) => react_jsx_runtime.JSX.Element | null;
|
|
688
700
|
|
|
689
701
|
type EditorControl = "bold" | "italic" | "underline" | "strike" | "heading1" | "bulletList" | "orderedList" | "blockquote" | "textStyle" | "link";
|
|
690
702
|
|