@6thbridge/hexa 0.0.0-pr61-99 → 0.0.0-pr62-100
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 -9
- package/dist/index.d.ts +15 -9
- 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
|
@@ -178,14 +178,8 @@ type PhoneInputProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onCh
|
|
|
178
178
|
showAsterisk?: boolean;
|
|
179
179
|
description?: React$1.ReactNode;
|
|
180
180
|
error?: string;
|
|
181
|
-
disableCountrySelect?: boolean;
|
|
182
|
-
countryOptions?: CountrySelectOption[];
|
|
183
181
|
};
|
|
184
182
|
declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps>;
|
|
185
|
-
type CountrySelectOption = {
|
|
186
|
-
label: string;
|
|
187
|
-
value: RPNInput.Country;
|
|
188
|
-
};
|
|
189
183
|
type FlagComponentProps = RPNInput.FlagProps & {
|
|
190
184
|
className?: string;
|
|
191
185
|
};
|
|
@@ -676,21 +670,33 @@ declare function Tabs({ tabs, defaultValue, onChange }: TabsProps): react_jsx_ru
|
|
|
676
670
|
declare const featureBannerVariants: (props?: ({
|
|
677
671
|
variant?: "success" | "pending" | "default" | "danger" | null | undefined;
|
|
678
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
|
+
};
|
|
679
683
|
type FeatureBannerProps = {
|
|
680
684
|
title: string;
|
|
681
685
|
message?: ReactNode;
|
|
682
686
|
icon?: ReactNode;
|
|
683
687
|
action?: {
|
|
684
688
|
label: string;
|
|
689
|
+
variant?: FeatureBannerActionVariant;
|
|
685
690
|
onClick: () => void;
|
|
686
|
-
className?: string;
|
|
687
691
|
};
|
|
688
692
|
dismissible?: boolean;
|
|
689
693
|
onDismiss?: () => void;
|
|
690
694
|
isOpen?: boolean;
|
|
691
|
-
|
|
695
|
+
align?: FeatureBannerAlign;
|
|
696
|
+
classNames?: FeatureBannerClassNames;
|
|
692
697
|
} & VariantProps<typeof featureBannerVariants>;
|
|
693
|
-
|
|
698
|
+
|
|
699
|
+
declare const FeatureBanner: ({ title, message, variant, icon, action, dismissible, onDismiss, isOpen, align, classNames, }: FeatureBannerProps) => react_jsx_runtime.JSX.Element | null;
|
|
694
700
|
|
|
695
701
|
type EditorControl = "bold" | "italic" | "underline" | "strike" | "heading1" | "bulletList" | "orderedList" | "blockquote" | "textStyle" | "link";
|
|
696
702
|
|
package/dist/index.d.ts
CHANGED
|
@@ -178,14 +178,8 @@ type PhoneInputProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onCh
|
|
|
178
178
|
showAsterisk?: boolean;
|
|
179
179
|
description?: React$1.ReactNode;
|
|
180
180
|
error?: string;
|
|
181
|
-
disableCountrySelect?: boolean;
|
|
182
|
-
countryOptions?: CountrySelectOption[];
|
|
183
181
|
};
|
|
184
182
|
declare const PhoneInput: React$1.ForwardRefExoticComponent<PhoneInputProps>;
|
|
185
|
-
type CountrySelectOption = {
|
|
186
|
-
label: string;
|
|
187
|
-
value: RPNInput.Country;
|
|
188
|
-
};
|
|
189
183
|
type FlagComponentProps = RPNInput.FlagProps & {
|
|
190
184
|
className?: string;
|
|
191
185
|
};
|
|
@@ -676,21 +670,33 @@ declare function Tabs({ tabs, defaultValue, onChange }: TabsProps): react_jsx_ru
|
|
|
676
670
|
declare const featureBannerVariants: (props?: ({
|
|
677
671
|
variant?: "success" | "pending" | "default" | "danger" | null | undefined;
|
|
678
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
|
+
};
|
|
679
683
|
type FeatureBannerProps = {
|
|
680
684
|
title: string;
|
|
681
685
|
message?: ReactNode;
|
|
682
686
|
icon?: ReactNode;
|
|
683
687
|
action?: {
|
|
684
688
|
label: string;
|
|
689
|
+
variant?: FeatureBannerActionVariant;
|
|
685
690
|
onClick: () => void;
|
|
686
|
-
className?: string;
|
|
687
691
|
};
|
|
688
692
|
dismissible?: boolean;
|
|
689
693
|
onDismiss?: () => void;
|
|
690
694
|
isOpen?: boolean;
|
|
691
|
-
|
|
695
|
+
align?: FeatureBannerAlign;
|
|
696
|
+
classNames?: FeatureBannerClassNames;
|
|
692
697
|
} & VariantProps<typeof featureBannerVariants>;
|
|
693
|
-
|
|
698
|
+
|
|
699
|
+
declare const FeatureBanner: ({ title, message, variant, icon, action, dismissible, onDismiss, isOpen, align, classNames, }: FeatureBannerProps) => react_jsx_runtime.JSX.Element | null;
|
|
694
700
|
|
|
695
701
|
type EditorControl = "bold" | "italic" | "underline" | "strike" | "heading1" | "bulletList" | "orderedList" | "blockquote" | "textStyle" | "link";
|
|
696
702
|
|