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.cjs.js +162 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +7 -2
- package/dist/index.es.js +1602 -1603
- package/dist/index.es.js.map +1 -0
- package/dist/index.umd.js +29 -28
- package/dist/index.umd.js.map +1 -0
- package/package.json +3 -5
- package/dist/style.css +0 -1
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: "
|
|
187
|
+
variant: "outline" | "default";
|
|
183
188
|
value: string;
|
|
184
|
-
color?:
|
|
189
|
+
color?: VariantProps<typeof chipVariants>["variant"];
|
|
185
190
|
endIcon?: React.ReactNode;
|
|
186
191
|
}
|
|
187
192
|
|