@qwanyx/stack 0.2.64 → 0.2.65
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/components/ComboStack.d.ts +2 -2
- package/dist/index.cjs.js +27 -27
- package/dist/index.esm.js +787 -761
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* ComboStack Component
|
|
3
|
-
* A
|
|
3
|
+
* A combo box with a sophisticated dropdown list (cards with title + notes)
|
|
4
4
|
*/
|
|
5
5
|
export interface ComboStackOption {
|
|
6
6
|
id: string;
|
|
@@ -20,7 +20,7 @@ export interface ComboStackProps {
|
|
|
20
20
|
onItemClick?: (option: ComboStackOption) => void;
|
|
21
21
|
/** Called when + is clicked to create new item */
|
|
22
22
|
onCreate?: () => void;
|
|
23
|
-
/** Max height before scrolling (default:
|
|
23
|
+
/** Max height before scrolling (default: 300px) */
|
|
24
24
|
maxHeight?: number | string;
|
|
25
25
|
/** Additional CSS class */
|
|
26
26
|
className?: string;
|