@umami/react-zen 0.228.0 → 0.229.0
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -357,6 +357,7 @@ interface ListProps extends ListBoxProps<any> {
|
|
|
357
357
|
declare function List({ id, items, idProperty, labelProperty, separatorProperty, highlightColor, showCheckmark, isFullscreen, label, value, onChange, className, selectedKeys, defaultSelectedKeys, onSelectionChange, style, children, ...props }: ListProps): react_jsx_runtime.JSX.Element;
|
|
358
358
|
interface ListItemProps extends ListBoxItemProps<any> {
|
|
359
359
|
children?: ReactNode;
|
|
360
|
+
id?: string | number;
|
|
360
361
|
showCheckmark?: boolean;
|
|
361
362
|
}
|
|
362
363
|
declare function ListItem({ id, children, className, showCheckmark, ...props }: ListItemProps): react_jsx_runtime.JSX.Element;
|
|
@@ -740,6 +741,7 @@ interface SelectProps extends SelectProps$1<HTMLSelectElement> {
|
|
|
740
741
|
value?: string | number;
|
|
741
742
|
defaultValue?: string | number;
|
|
742
743
|
label?: string;
|
|
744
|
+
placeholder?: string;
|
|
743
745
|
isLoading?: boolean;
|
|
744
746
|
allowSearch?: boolean;
|
|
745
747
|
searchValue?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -357,6 +357,7 @@ interface ListProps extends ListBoxProps<any> {
|
|
|
357
357
|
declare function List({ id, items, idProperty, labelProperty, separatorProperty, highlightColor, showCheckmark, isFullscreen, label, value, onChange, className, selectedKeys, defaultSelectedKeys, onSelectionChange, style, children, ...props }: ListProps): react_jsx_runtime.JSX.Element;
|
|
358
358
|
interface ListItemProps extends ListBoxItemProps<any> {
|
|
359
359
|
children?: ReactNode;
|
|
360
|
+
id?: string | number;
|
|
360
361
|
showCheckmark?: boolean;
|
|
361
362
|
}
|
|
362
363
|
declare function ListItem({ id, children, className, showCheckmark, ...props }: ListItemProps): react_jsx_runtime.JSX.Element;
|
|
@@ -740,6 +741,7 @@ interface SelectProps extends SelectProps$1<HTMLSelectElement> {
|
|
|
740
741
|
value?: string | number;
|
|
741
742
|
defaultValue?: string | number;
|
|
742
743
|
label?: string;
|
|
744
|
+
placeholder?: string;
|
|
743
745
|
isLoading?: boolean;
|
|
744
746
|
allowSearch?: boolean;
|
|
745
747
|
searchValue?: string;
|