@bubo-squared/ui-framework 0.2.15 → 0.2.16
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 +251 -276
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +250 -275
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -33,6 +33,8 @@ declare const iconButtonVariants: (props?: ({
|
|
|
33
33
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconButtonVariants> {
|
|
34
34
|
asChild?: boolean;
|
|
35
35
|
icon: React$1.ReactNode;
|
|
36
|
+
/** If true, renders a circular IconButton. */
|
|
37
|
+
round?: boolean;
|
|
36
38
|
}
|
|
37
39
|
declare const IconButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
38
40
|
|
|
@@ -375,6 +377,10 @@ interface AutocompleteProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEl
|
|
|
375
377
|
inputValue?: string;
|
|
376
378
|
defaultInputValue?: string;
|
|
377
379
|
onInputChange?: (value: string) => void;
|
|
380
|
+
/** Optional className for the dropdown (options container). */
|
|
381
|
+
dropdownClassName?: string;
|
|
382
|
+
/** Optional className for the listbox (<ul>). */
|
|
383
|
+
listboxClassName?: string;
|
|
378
384
|
}
|
|
379
385
|
declare const Autocomplete: React$1.FC<AutocompleteProps>;
|
|
380
386
|
|
package/dist/index.d.ts
CHANGED
|
@@ -33,6 +33,8 @@ declare const iconButtonVariants: (props?: ({
|
|
|
33
33
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconButtonVariants> {
|
|
34
34
|
asChild?: boolean;
|
|
35
35
|
icon: React$1.ReactNode;
|
|
36
|
+
/** If true, renders a circular IconButton. */
|
|
37
|
+
round?: boolean;
|
|
36
38
|
}
|
|
37
39
|
declare const IconButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
38
40
|
|
|
@@ -375,6 +377,10 @@ interface AutocompleteProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEl
|
|
|
375
377
|
inputValue?: string;
|
|
376
378
|
defaultInputValue?: string;
|
|
377
379
|
onInputChange?: (value: string) => void;
|
|
380
|
+
/** Optional className for the dropdown (options container). */
|
|
381
|
+
dropdownClassName?: string;
|
|
382
|
+
/** Optional className for the listbox (<ul>). */
|
|
383
|
+
listboxClassName?: string;
|
|
378
384
|
}
|
|
379
385
|
declare const Autocomplete: React$1.FC<AutocompleteProps>;
|
|
380
386
|
|