@altimateai/ui-components 0.0.8-beta.1 → 0.0.9
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/CoachForm.js +2594 -2585
- package/dist/NativeSelect.js +3 -33
- package/dist/chatbotV2/index.d.ts +3 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index2.css +1 -1
- package/dist/lineage/index.d.ts +1 -12
- package/dist/lineage/index.js +1669 -1668
- package/dist/redux-toolkit.modern.js +1 -1
- package/dist/shadcn/index.d.ts +1 -10
- package/dist/shadcn/index.js +1 -1
- package/dist/{types-ClqBUI2s.d.ts → types-MLsaGOQh.d.ts} +2 -0
- package/package.json +1 -1
|
@@ -10062,7 +10062,7 @@ const _a = "_codeblock_19tsp_1", Ma = "_dark_19tsp_1", Qn = {
|
|
|
10062
10062
|
}
|
|
10063
10063
|
), xs = zt(function({
|
|
10064
10064
|
children: o,
|
|
10065
|
-
wrap: n = !
|
|
10065
|
+
wrap: n = !1,
|
|
10066
10066
|
justify: r,
|
|
10067
10067
|
align: t,
|
|
10068
10068
|
flex: a,
|
package/dist/shadcn/index.d.ts
CHANGED
|
@@ -224,19 +224,10 @@ declare const Tooltip: ({ children, title, ...props }: TooltipPrimitive.TooltipP
|
|
|
224
224
|
|
|
225
225
|
declare const badgeVariants: (props?: ({
|
|
226
226
|
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
227
|
-
interactive?: boolean | null | undefined;
|
|
228
227
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
229
228
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
230
|
-
/**
|
|
231
|
-
* If true, the badge will be focusable and handle keyboard events
|
|
232
|
-
*/
|
|
233
|
-
interactive?: boolean;
|
|
234
|
-
/**
|
|
235
|
-
* Optional click handler for interactive badges
|
|
236
|
-
*/
|
|
237
|
-
onAction?: () => void;
|
|
238
229
|
}
|
|
239
|
-
declare function Badge({ className, variant,
|
|
230
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
240
231
|
|
|
241
232
|
declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
|
|
242
233
|
declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
package/dist/shadcn/index.js
CHANGED
|
@@ -753,7 +753,7 @@ const Dl = jl, Mr = c.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */
|
|
|
753
753
|
{
|
|
754
754
|
ref: a,
|
|
755
755
|
className: w(
|
|
756
|
-
"al-fixed al-top-0 al-z-[
|
|
756
|
+
"al-fixed al-top-0 al-z-[100] al-flex al-max-h-screen al-w-full al-flex-col-reverse al-p-4 sm:al-bottom-0 sm:al-right-0 sm:al-top-auto sm:al-flex-col md:al-max-w-[420px]",
|
|
757
757
|
e
|
|
758
758
|
),
|
|
759
759
|
role: "region",
|
|
@@ -57,6 +57,7 @@ interface ChatbotProps {
|
|
|
57
57
|
context?: Record<string, unknown>;
|
|
58
58
|
fileUploadProps?: FileUploadProps;
|
|
59
59
|
contextOptions?: ContextOption[];
|
|
60
|
+
placeholder?: string;
|
|
60
61
|
}
|
|
61
62
|
interface ChatbotProviderProps extends ChatbotProps {
|
|
62
63
|
taskLabel?: keyof typeof TaskLabels;
|
|
@@ -74,6 +75,7 @@ interface ChatbotProviderProps extends ChatbotProps {
|
|
|
74
75
|
label: string;
|
|
75
76
|
value: string;
|
|
76
77
|
}[];
|
|
78
|
+
placeholder?: string;
|
|
77
79
|
}
|
|
78
80
|
type InteractionType = "text" | "select" | "multiSelect" | "confirm";
|
|
79
81
|
interface InteractionChoice {
|