@altimateai/ui-components 0.0.4-beta.4 → 0.0.5
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 +1 -1
- package/dist/NativeSelect.js +207 -192
- package/dist/shadcn/index.d.ts +5 -3
- package/dist/shadcn/index.js +1200 -1179
- package/dist/storybook/Select.stories.tsx +133 -2
- package/package.json +2 -2
package/dist/shadcn/index.d.ts
CHANGED
|
@@ -321,14 +321,16 @@ interface Props {
|
|
|
321
321
|
value: string;
|
|
322
322
|
label: string;
|
|
323
323
|
}[];
|
|
324
|
-
value?: string;
|
|
325
|
-
onChange: (value: string) => void;
|
|
324
|
+
value?: string | string[];
|
|
325
|
+
onChange: (value: string | string[]) => void;
|
|
326
326
|
placeholder?: string;
|
|
327
327
|
buttonProps?: ButtonProps;
|
|
328
328
|
id?: string;
|
|
329
329
|
icon?: ReactNode;
|
|
330
|
+
multiSelect?: boolean;
|
|
331
|
+
showApplyButton?: boolean;
|
|
330
332
|
}
|
|
331
|
-
declare const Combobox: ({ options, value, onChange, placeholder, buttonProps, id, icon }: Props) => react_jsx_runtime.JSX.Element;
|
|
333
|
+
declare const Combobox: ({ options, value, onChange, placeholder, buttonProps, id, icon, multiSelect, showApplyButton, }: Props) => react_jsx_runtime.JSX.Element;
|
|
332
334
|
|
|
333
335
|
declare const selectVariants: (props?: ({
|
|
334
336
|
variant?: "default" | "destructive" | "outline" | "success" | "secondary" | "ghost" | null | undefined;
|