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