@bfrs/agentic-components 0.1.5 → 0.1.7
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/components/navigation/ActionMenu/ActionMenu.types.d.ts +1 -1
- package/dist/components/navigation/Tabs/Tabs.types.d.ts +1 -1
- package/dist/components/primitives/Badge/Badge.types.d.ts +1 -1
- package/dist/components/primitives/Button/Button.types.d.ts +1 -1
- package/dist/components/primitives/Chip/Chip.types.d.ts +1 -1
- package/dist/components/primitives/Input/Input.types.d.ts +1 -1
- package/dist/components/ui/patterns/BusinessInfoDisplayCard/BusinessInfoDisplayCard.d.ts +1 -1
- package/dist/components/ui/primitives/Icon/Icon.d.ts +1 -1
- package/dist/index.js +2421 -2390
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tokens/sizes.d.ts +11 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ export type TabItem = {
|
|
|
10
10
|
export type TabsProps = RadixTabs.TabsProps & {
|
|
11
11
|
items?: TabItem[];
|
|
12
12
|
variant?: "line" | "pill";
|
|
13
|
-
size?: "sm" | "md" | "lg";
|
|
13
|
+
size?: "xs" | "sm" | "md" | "lg";
|
|
14
14
|
listClassName?: string;
|
|
15
15
|
triggerClassName?: string;
|
|
16
16
|
contentClassName?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
2
|
import { Tone } from '../../../tokens';
|
|
3
|
-
export type BadgeSize = "sm" | "md" | "lg";
|
|
3
|
+
export type BadgeSize = "xs" | "sm" | "md" | "lg";
|
|
4
4
|
export type BadgeTone = Tone;
|
|
5
5
|
export type BadgeVariant = "default" | BadgeTone;
|
|
6
6
|
export type BadgeProps = HTMLAttributes<HTMLSpanElement> & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonHTMLAttributes, ReactNode } from 'react';
|
|
2
2
|
export type ButtonVariant = "primary" | "secondary" | "tertiary" | "outline" | "ghost" | "destructive" | "danger" | "link";
|
|
3
|
-
export type ButtonSize = "sm" | "md" | "lg";
|
|
3
|
+
export type ButtonSize = "xs" | "sm" | "md" | "lg";
|
|
4
4
|
export type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
5
5
|
variant?: ButtonVariant;
|
|
6
6
|
size?: ButtonSize;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonHTMLAttributes, HTMLAttributes, ReactNode } from 'react';
|
|
2
2
|
import { Tone } from '../../../tokens';
|
|
3
|
-
export type ChipSize = "sm" | "md" | "lg";
|
|
3
|
+
export type ChipSize = "xs" | "sm" | "md" | "lg";
|
|
4
4
|
export type ChipVariant = "default" | "soft" | "outline" | "filled";
|
|
5
5
|
export type ChipProps = HTMLAttributes<HTMLSpanElement> & {
|
|
6
6
|
variant?: ChipVariant;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InputHTMLAttributes, ReactNode } from 'react';
|
|
2
|
-
export type InputSize = "sm" | "md" | "lg";
|
|
2
|
+
export type InputSize = "xs" | "sm" | "md" | "lg";
|
|
3
3
|
export type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size"> & {
|
|
4
4
|
size?: InputSize;
|
|
5
5
|
label?: ReactNode;
|
|
@@ -7,7 +7,7 @@ export type PhosphorIconComponent = ComponentType<{
|
|
|
7
7
|
}>;
|
|
8
8
|
export type IconProps = {
|
|
9
9
|
icon: PhosphorIconComponent;
|
|
10
|
-
size?: "sm" | "md" | "lg" | number;
|
|
10
|
+
size?: "xs" | "sm" | "md" | "lg" | number;
|
|
11
11
|
weight?: "thin" | "light" | "regular" | "bold" | "fill" | "duotone";
|
|
12
12
|
className?: string;
|
|
13
13
|
decorative?: boolean;
|