@altimateai/ui-components 0.0.26 → 0.0.28
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/Stack.js +1 -1
- package/dist/shadcn/index.d.ts +2 -1
- package/dist/shadcn/index.js +736 -735
- package/package.json +1 -1
package/dist/Stack.js
CHANGED
|
@@ -6793,7 +6793,7 @@ const ed = ({
|
|
|
6793
6793
|
title: t,
|
|
6794
6794
|
...n
|
|
6795
6795
|
}) => t ? /* @__PURE__ */ g.jsxs(Mu, { ...n, children: [
|
|
6796
|
-
/* @__PURE__ */ g.jsx(Iu, { asChild: !0, children: /* @__PURE__ */ g.jsx("span", { children: e }) }),
|
|
6796
|
+
/* @__PURE__ */ g.jsx(Iu, { asChild: !0, children: /* @__PURE__ */ g.jsx("span", { className: "al-max-w-full", children: e }) }),
|
|
6797
6797
|
/* @__PURE__ */ g.jsx(is, { children: t })
|
|
6798
6798
|
] }) : /* @__PURE__ */ g.jsx(g.Fragment, { children: e }), td = G(function({
|
|
6799
6799
|
children: t,
|
package/dist/shadcn/index.d.ts
CHANGED
|
@@ -362,6 +362,7 @@ interface Props {
|
|
|
362
362
|
value?: string | string[];
|
|
363
363
|
onChange: (value: string | string[]) => void;
|
|
364
364
|
placeholder?: string;
|
|
365
|
+
showOnlyPlaceholder?: boolean;
|
|
365
366
|
searchPlaceholder?: string;
|
|
366
367
|
buttonProps?: ButtonProps;
|
|
367
368
|
id?: string;
|
|
@@ -370,7 +371,7 @@ interface Props {
|
|
|
370
371
|
showApplyButton?: boolean;
|
|
371
372
|
showClearButton?: boolean;
|
|
372
373
|
}
|
|
373
|
-
declare const Combobox: ({ options, value, onChange, placeholder, searchPlaceholder, buttonProps, id, icon, multiSelect, showApplyButton, showClearButton, }: Props) => react_jsx_runtime.JSX.Element;
|
|
374
|
+
declare const Combobox: ({ options, value, onChange, placeholder, showOnlyPlaceholder, searchPlaceholder, buttonProps, id, icon, multiSelect, showApplyButton, showClearButton, }: Props) => react_jsx_runtime.JSX.Element;
|
|
374
375
|
|
|
375
376
|
declare const selectVariants: (props?: ({
|
|
376
377
|
variant?: "default" | "destructive" | "outline" | "success" | "secondary" | "ghost" | null | undefined;
|