hight-orchestratorbot-components 1.18.7 → 1.19.2

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 CHANGED
@@ -104,6 +104,10 @@ declare const buttonVariants: (props?: ({
104
104
 
105
105
  export declare const Chip: (params: IProps_12) => JSX_2.Element;
106
106
 
107
+ declare const chipVariants: (props?: ({
108
+ variant?: "primary" | "secondary" | "success" | "warning" | "destructive" | "info" | null | undefined;
109
+ } & ClassProp) | undefined) => string;
110
+
107
111
  export declare const Divider: ForwardRefExoticComponent<IProps & RefAttributes<HTMLHRElement>>;
108
112
 
109
113
  declare interface IBrandAlertProps {
@@ -116,6 +120,7 @@ declare interface IBrandAlertProps {
116
120
 
117
121
  declare interface IBrandButton extends ButtonProps {
118
122
  loading?: boolean;
123
+ variant?: VariantProps<typeof buttonVariants>["variant"];
119
124
  }
120
125
 
121
126
  declare interface IBrandCard extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
@@ -179,9 +184,9 @@ declare interface IProps_11 {
179
184
  }
180
185
 
181
186
  declare interface IProps_12 {
182
- variant: "default" | "outline";
187
+ variant: "outline" | "default";
183
188
  value: string;
184
- color?: string;
189
+ color?: VariantProps<typeof chipVariants>["variant"];
185
190
  endIcon?: React.ReactNode;
186
191
  }
187
192