@mindly/ui-components 5.49.1 → 5.49.3
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.
|
@@ -12,7 +12,6 @@ export type ListOptionsProps = {
|
|
|
12
12
|
type?: ListBoxSelectionType;
|
|
13
13
|
selectionPosition?: 'start' | 'end';
|
|
14
14
|
enableSelection?: boolean;
|
|
15
|
-
customContent?: boolean;
|
|
16
15
|
};
|
|
17
16
|
export type ListBoxItemProps = {
|
|
18
17
|
icon?: React.ReactNode;
|
|
@@ -22,5 +21,6 @@ export type ListBoxItemProps = {
|
|
|
22
21
|
value?: string;
|
|
23
22
|
children: React.ReactNode;
|
|
24
23
|
className?: string;
|
|
24
|
+
customContent?: boolean;
|
|
25
25
|
onClick?: HTMLIonItemElement["onclick"];
|
|
26
26
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1737,7 +1737,6 @@ type ListOptionsProps = {
|
|
|
1737
1737
|
type?: ListBoxSelectionType;
|
|
1738
1738
|
selectionPosition?: 'start' | 'end';
|
|
1739
1739
|
enableSelection?: boolean;
|
|
1740
|
-
customContent?: boolean;
|
|
1741
1740
|
};
|
|
1742
1741
|
type ListBoxItemProps = {
|
|
1743
1742
|
icon?: React.ReactNode;
|
|
@@ -1747,6 +1746,7 @@ type ListBoxItemProps = {
|
|
|
1747
1746
|
value?: string;
|
|
1748
1747
|
children: React.ReactNode;
|
|
1749
1748
|
className?: string;
|
|
1749
|
+
customContent?: boolean;
|
|
1750
1750
|
onClick?: HTMLIonItemElement["onclick"];
|
|
1751
1751
|
};
|
|
1752
1752
|
|